aboutsummaryrefslogtreecommitdiffstats
path: root/terminaldweller.com/eggdrop/docker-compose.yaml
blob: 8b005747a08fe21fd706b2d0d00c4acc39ba9fe0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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: