mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-18 15:25:41 +00:00
24 lines
628 B
YAML
24 lines
628 B
YAML
# [Thelounge](https://thelounge.github.io/) (a fork of shoutIRC) is a web IRC
|
|
# client that you host on your own server.
|
|
|
|
---
|
|
version: "2.1"
|
|
services:
|
|
thelounge:
|
|
image: ghcr.io/linuxserver/thelounge
|
|
container_name: thelounge
|
|
environment:
|
|
# for UserID
|
|
- PUID=${PUID:-1024}
|
|
# for GroupID
|
|
- PGID=${PGID:-100}
|
|
# Specify a timezone to use for example Europe/Amsterdam
|
|
- TZ=${TZ:-Europe/Amsterdam}
|
|
volumes:
|
|
# Configuration files.
|
|
- ${BASEDIR:-/volume1/docker}/thelounge/config:/config
|
|
ports:
|
|
# Application WebUI
|
|
- 9000:9000
|
|
restart: unless-stopped
|