This Docker image is based on aliyun-alpine.
docker run --name lighttpd -d \
-p <http-port>:80 \
-v <home-directory>:/var/www/localhost/htdocs \
nunchuk/lighttpd
Add the following lines in an docker-compose.yml file:
lighttpd:
image: nunchuk/lighttpd
volumes:
- <home-directory>:/var/www/localhost/htdocs
ports:
- "<http-port>:80"
Then start a lighttpd container with:
docker-compose up lighttpd
Content type
Image
Digest
Size
3.6 MB
Last updated
over 10 years ago
docker pull nunchuk/docker-lighttpd