aboutsummaryrefslogtreecommitdiffstats
path: root/terminaldweller.com/gitter-irc/docker-compose.yaml
blob: ddc704bb24e3377818e3a23463c4f9b1a83e77af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
version: "3"
services:
  irc-gitter:
    image: irc-gitter
    build:
      context: .
    networks:
      - ircgitternet
    ports:
      - "127.0.0.1:5667:6667"
    restart: unless-stopped
    entrypoint: ["npm", "start"]
    cap_drop:
      - ALL
    cap_add:
      - CHOWN
      - SETGID
      - SETUID
networks:
  ircgitternet: