mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-10 13:10:31 +00:00
25 lines
777 B
YAML
25 lines
777 B
YAML
# [Limnoria](https://github.com/ProgVal/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 UserID
|
|
- PUID=${PUID:-1024}
|
|
# for GroupID
|
|
- PGID=${PGID:-100}
|
|
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
|
|
- TZ=${TZ:-Europe/Amsterdam}
|
|
volumes:
|
|
# Where Limnoria config is stored.
|
|
- ${BASEDIR:-/volume1/docker}/limnoria/config:/config
|
|
ports:
|
|
# Port for Limnoria's web interface.
|
|
- 8080:8080
|
|
restart: unless-stopped
|