Minggu, 03 November 2019

Docker Apache

Installing Docker on CentOS and Ubuntu

To begin, let’s install Docker using the following command. This will download and run a shell script that will add the Docker repository to our system and install the package.
# curl -fsSL https://get.docker.com | sh
Next, use systemctl command to start the main Docker service and check its status.
# systemctl start docker
# systemctl status docker
At this point we can simply execute.
# docker
to view the list of available commands or to get help.
# docker COMMAND --help
# docker ps --help
will tell us how to list containers present on our system, whereas
# docker run --help
will print all the options that we can use to manipulate a container.

Setting Up an Apache Container

One of the amazing things about the Docker ecosystem is that there are tens of standard containers that you can easily download and use. In the following example we will instantiate an Apache 2.4 container named tecmint-web, detached from the current terminal. We will use an image called httpd:2.4 from Docker Hub.
Our plan is to have requests made to our public IP address on port 8080 be redirected to port 80 on the container. Also, instead of serving content from the container itself, we will serve a simple web page from /home/user/website.
We do this by mapping /home/user/website/ on the /usr/local/apache2/htdocs/ on the container. Note that you will need to use sudo or log in as root to proceed, and do not omit the forward slashes at the end of each directory.
# sudo docker run -dit --name tecmint-web -p 8080:80 -v /home/user/website/:/usr/local/apache2/htdocs/ httpd:2.4
At this point our Apache container should be up and running.
$ sudo docker ps
Check Apache Docker Container
Check Apache Docker Container
Now let’s create a simple web page named docker.html inside /home/user/website directory.
# vi /home/user/website/docker.html

Add the following sample HTML content to file.
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Learn Docker at Tecmint.com</title>
</head>
<body>
    <h1>Learn Docker With Us</h1>   
</body>
</html>
Next, point your browser to AAA.BBB.CCC.DDD:8080/docker.html (where AAA.BBB.CCC.DDD is your host’s public IP address). You should be presented with the page we created previously.
Check Apache Page
Check Apache Page
If you wish, you can now stop the container.
$ sudo docker stop tecmint-web
and remove it:
$ sudo docker rm tecmint-web
To finish cleaning up, you may want to delete the image that was used in the container (omit this step if you’re planning on creating other Apache 2.4 containers soon).
$ sudo docker image remove httpd:2.4
Note that in all the above steps we never had to install the web server on our host.

Tidak ada komentar:

Posting Komentar