Skip to content

learn-cloud/docker-apache2

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

docker-apache2

Dockerfile for Apache Web Server

Usage

Make a new Dockerfile that extends from this image:

FROM sismics/apache2:latest

Add your documents to the web root:

RUN rm -fr /var/www/html/*
ADD www /var/www/html

Start a container:

docker run -d -h apache2 --name apache2 -p 80:80 --restart=always \
    sismics/apache2

About

Dockerfile for Apache2 Web Server

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

  • Dockerfile 76.8%
  • Shell 23.2%