blob: 8b005747a08fe21fd706b2d0d00c4acc39ba9fe0 (
plain) (
tree)
|
|
version: '3.1'
services:
eggdrop:
image: eggdrop:1.9
### If running for the first time without providing your own config, you
### probably want to set these variables
# environment:
# - SERVER="irc.terminaldweller.com +6697"
# - NICK=eggdrop
### Make this match your listen setting in the config
ports:
- "127.0.0.1:3335:3333"
### Change this to the path with your config and user/channel files
networks:
- eggnet
volumes:
- ./data/:/home/eggdrop/eggdrop/data/
#command: ["-c", "/home/eggdrop/eggdrop/data/eggdrop.conf"]
### If you want to add scripts, put them here. Don't mount to /scripts because
### it will overwrite the ones that are already used. Make sure you use
### 'source scripts2/foo.tcl' as the path in the config.
# -/changethispart/scripts:/home/eggdrop/eggdrop/scripts2
### Enter config name, if not eggdrop.conf
# command: LeafBlower.conf
stdin_open: true
tty: true
restart: unless-stopped
networks:
eggnet:
|