update Docker deployment example

This commit is contained in:
2024-11-02 21:40:13 +01:00
parent 1620c4b951
commit 9529a574ef
2 changed files with 1 additions and 15 deletions

View File

@@ -1,14 +0,0 @@
services:
goma-gateway:
image: jkaninda/goma-gateway
command: server
healthcheck:
test: curl -f http://localhost/healthz || exit 1
interval: 30s
retries: 5
start_period: 20s
timeout: 10s
ports:
- "80:80"
volumes:
- ./config:/config/

View File

@@ -3,7 +3,7 @@ services:
image: jkaninda/goma-gateway image: jkaninda/goma-gateway
command: server command: server
healthcheck: healthcheck:
test: curl -f http://localhost/healthz || exit 1 test: curl -f http://localhost/readyz || exit 1
interval: 30s interval: 30s
retries: 5 retries: 5
start_period: 20s start_period: 20s