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