creating centos httpd webserver image and container from docker hub
2 May 2023 at 07:44
$ docker search httpd
$ docker pull centos/httpdΒ
$ docker images
$ docker run -d --name httpd_demo2 -p 8082:80 centos/httpdΒ
http://ip:8082
$ docker search httpd
$ docker pull centos/httpdΒ
$ docker images
$ docker run -d --name httpd_demo2 -p 8082:80 centos/httpdΒ
http://ip:8082
$ mkdir httpd && cd httpd
$ vim Dockerfile
FROM centos:7
MAINTAINER tkdhanasekar <tkdhanasekar@gmail.com>
RUN yum update -y
RUN yum install httpd -y
COPY index.html /var/www/html/
ENTRYPOINT ["/usr/sbin/httpd","-D","FOREGROUND"]
:wq!
$ vim index.html
<h1> This is CentOS httpd Docker Container </h1>
:wq!
$ docker build -t myhttpd .
$ docker run -d --name httpd_demo -p 8081:80 myhttpd
http://server_ip:8081