2019-01-19 13:56:23 +00:00
|
|
|
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:
|
2019-01-19 17:18:03 +00:00
|
|
|
VIRTUAL_HOST: irc.data.coop
|
|
|
|
LETSENCRYPT_HOST: irc.data.coop
|
|
|
|
LETSENCRYPT_EMAIL: valberg@orn.li
|
2019-01-19 13:56:23 +00:00
|
|
|
|
|
|
|
volumes:
|
|
|
|
thelounge:
|
|
|
|
|
|
|
|
networks:
|
|
|
|
external_services:
|
|
|
|
external: true
|