diff options
Diffstat (limited to 'roles/whois/templates/docker-compose.yml.j2')
-rw-r--r-- | roles/whois/templates/docker-compose.yml.j2 | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/roles/whois/templates/docker-compose.yml.j2 b/roles/whois/templates/docker-compose.yml.j2 index 4832672..7a15155 100644 --- a/roles/whois/templates/docker-compose.yml.j2 +++ b/roles/whois/templates/docker-compose.yml.j2 @@ -5,7 +5,7 @@ services: restart: always image: git.simponic.xyz/simponic/whois healthcheck: - test: ["CMD", "wget", "--spider", "http://localhost:8080/api/health"] + test: ["CMD", "wget", "--spider", "http://localhost:8080/health"] interval: 5s timeout: 10s retries: 5 @@ -13,4 +13,14 @@ services: volumes: - ./db:/app/db ports: - - "127.0.0.1:8466:8080" + - "127.0.0.1:8467:8080" + frontend: + restart: always + image: git.simponic.xyz/simponic/penguin-new-tab + healthcheck: + test: ["CMD", "wget", "--spider", "http://localhost:3000"] + interval: 5s + timeout: 10s + retries: 5 + ports: + - "127.0.0.1:8466:3000" |