diff options
Diffstat (limited to '')
-rw-r--r-- | terminaldweller.com/eggdrop/docker-compose.yaml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/terminaldweller.com/eggdrop/docker-compose.yaml b/terminaldweller.com/eggdrop/docker-compose.yaml new file mode 100644 index 0000000..8b00574 --- /dev/null +++ b/terminaldweller.com/eggdrop/docker-compose.yaml @@ -0,0 +1,30 @@ +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: |