13 lines
266 B
YAML
13 lines
266 B
YAML
|
version: '3'
|
||
|
|
||
|
services:
|
||
|
lighttpd:
|
||
|
container_name: lighttpd
|
||
|
image: sebp/lighttpd
|
||
|
volumes:
|
||
|
- /home/thordj/web:/var/www/localhost/htdocs
|
||
|
- ./config:/etc/lighttpd
|
||
|
ports:
|
||
|
- "80:80"
|
||
|
tty: true
|