mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-16 12:13:26 +00:00
25 lines
721 B
YAML
25 lines
721 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 for example Europe/Amsterdam
|
|
- 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
|