10 lines
256 B
YAML
10 lines
256 B
YAML
|
version: '3'
|
||
|
services:
|
||
|
thelounge:
|
||
|
image: thelounge/thelounge:latest
|
||
|
container_name: thelounge
|
||
|
ports:
|
||
|
- "9000:9000"
|
||
|
restart: always
|
||
|
volumes:
|
||
|
- ~/.thelounge:/var/opt/thelounge # bind lounge config from the host's file system
|