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