diff options
author | terminaldweller <thabogre@gmail.com> | 2023-01-17 12:05:39 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2023-01-17 12:05:39 +0000 |
commit | f3c36dad4ec3e17042741d475848bca913e48f3c (patch) | |
tree | 36fade01013055da16e68af812d1dfcdaec83846 /docker-compose.yaml | |
parent | Initial commit (diff) | |
download | icanhazallips-f3c36dad4ec3e17042741d475848bca913e48f3c.tar.gz icanhazallips-f3c36dad4ec3e17042741d475848bca913e48f3c.zip |
first commit
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 |