2021-04-10 10:16:29 +00:00
|
|
|
# Limnoria A robust, full-featured, and user/programmer-friendly Python IRC bot,
|
|
|
|
# with many existing plugins. Successor of the well-known Supybot.
|
|
|
|
|
|
|
|
---
|
|
|
|
version: "2.1"
|
|
|
|
services:
|
|
|
|
limnoria:
|
|
|
|
image: ghcr.io/linuxserver/limnoria
|
|
|
|
container_name: limnoria
|
|
|
|
environment:
|
|
|
|
# for GroupID
|
|
|
|
- PUID=${PUID:-1024}
|
|
|
|
# for UserID
|
|
|
|
- PGID=${PGID:-100}
|
|
|
|
# Specify a timezone to use for example Europe/Amsterdam
|
2021-04-13 00:58:58 +00:00
|
|
|
- TZ=${TZ:-Europe/Amsterdam}
|
2021-04-10 10:16:29 +00:00
|
|
|
volumes:
|
|
|
|
# Where Limnoria config is stored.
|
|
|
|
- ${BASEDIR:-/volume1/docker}/limnoria/config:/config
|
|
|
|
ports:
|
|
|
|
# Port for Limnoria's web interface.
|
|
|
|
- 8080:8080
|
|
|
|
restart: unless-stopped
|