Docker container for The Lounge, a self-hosted web IRC client.
Using the example docker-compose.yml file
$ docker-compose up --detach
or
$ docker run --detach \
--name lounge \
--publish 9000:9000 \
--volume ~/.lounge:/home/lounge/data \
--restart always \
thelounge/lounge:latest
Lounge reads and stores its configuration, logs and other data at /home/lounge/data
.
Lounge runs as the lounge:lounge
user by default, with uid=1000, gid=1000
. These can be
overridden with the user
, uid
, group
, gid
build args.