docker-bits/lsio/thelounge/docker-run.sh

14 lines
501 B
Bash
Raw Normal View History

2021-04-10 10:16:29 +00:00
# Thelounge (a fork of shoutIRC) is a web IRC client that you host on your own
# server.
source ./.env
docker run -d \
--name=thelounge \
-e PUID=${PUID:-1024} `# for GroupID` \
-e PGID=${PGID:-100} `# for UserID` \
2021-04-13 00:58:58 +00:00
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
2021-04-10 10:16:29 +00:00
-p 9000:9000 `# Application WebUI` \
-v ${BASEDIR:-/volume1/docker}/thelounge/config:/config `# Configuration files.` \
--restart unless-stopped \
ghcr.io/linuxserver/thelounge