thirdculture/docker-compose.yml

35 lines
658 B
YAML
Raw Normal View History

2024-07-18 14:09:32 -04:00
services:
werc:
build:
2024-11-11 14:52:00 -05:00
network: host
2024-07-18 14:09:32 -04:00
dockerfile: Dockerfile
context: .
ports:
- 80:80
environment:
- HOSTNAME=thirdculture.top
volumes:
- werc:/var/www/werc
- lighttpd:/etc/lighttpd
tty: true
gossa:
image: pldubouilh/gossa
ports:
- 8001:8001
volumes:
2024-11-11 14:52:00 -05:00
- ./werc/sites/thirdculture.top/_files:/shared
2024-07-22 10:22:25 -04:00
- ./werc/sites/ppl.thirdculture.top:/shared/people
2024-07-18 14:09:32 -04:00
volumes:
werc:
driver: local
driver_opts:
o: bind
type: none
device: "./werc"
lighttpd:
driver: local
driver_opts:
o: bind
type: none
device: "./etc/lighttpd"