Sign inSign up

nunchuk/docker-lighttpd

By nunchuk

Updated over 10 years ago

Dockerized Lighttpd

Image
0

928

nunchuk/docker-lighttpd repository overview

Lighttpd Docker image

This Docker image is based on aliyun-alpine.

Quick start

docker run --name lighttpd -d \
	-p <http-port>:80 \
	-v <home-directory>:/var/www/localhost/htdocs \
	nunchuk/lighttpd

Docker Compose start

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

Contributors

Tag summary

Content type

Image

Digest

Size

3.6 MB

Last updated

over 10 years ago

docker pull nunchuk/docker-lighttpd