A Apache http server on Alpine docker container
5.4K
A Apache http server on Alpine docker container
It's on docker-hub and github
latest (Dockerfile) sample docker-compose.yml
version: "2"
services:
main:
image: gendosu/alpine-apache:latest
volumes:
- ".:/products"
- "./html:/var/www/html"
- "./apache2/conf.d:/etc/apache2/conf.d"
- "./log:/var/log/apache2"
environment:
APACHE_LOG_DIR: "/var/log/apache2"
ports:
- "80:80"
Run container.
docker-compose up -d
Content type
Image
Digest
Size
78.3 MB
Last updated
over 8 years ago
docker pull gendosu/alpine-apache