forked from data.coop/ansible
24 lines
490 B
YAML
24 lines
490 B
YAML
version: '3'
|
|
services:
|
|
thelounge:
|
|
image: thelounge/lounge:latest
|
|
container_name: thelounge
|
|
restart: always
|
|
ports:
|
|
- "9000:9000"
|
|
volumes:
|
|
- thelounge:/home/lounge/data # bind lounge config from the host's file system
|
|
networks:
|
|
- external_services
|
|
environment:
|
|
- VIRTUAL_HOST=irc.kva.li
|
|
- LETSENCRYPT_HOST=irc.kva.li
|
|
- LETSENCRYPT_EMAIL=valberg@orn.li
|
|
|
|
volumes:
|
|
thelounge:
|
|
|
|
networks:
|
|
external_services:
|
|
external: true
|