❌

Normal view

There are new articles available, click to refresh the page.
Before yesterdayMain stream

creating centos httpd webserver container from docker file

2 May 2023 at 07:40

$ 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

❌
❌