aboutsummaryrefslogtreecommitdiffstats
path: root/docker-compose.yaml
blob: 23008a96fd7f6286a17730416705137754d2a7f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
version: "3"
services:
  icanhazallips:
    image: icanhazallips
    build:
      context: .
    networks:
      - mainnet
    restart: unless-stopped
    ports:
      - target: 8080
        publish: 9380
        mode: host
    entrypoint: ["/icanhazallips/icanhazallips"]
    cap_drop:
      - ALL
networks:
  mainnet:
    driver: bridge