From 9529a574eff5704aafeaa71b422b6f5c2bbf0993 Mon Sep 17 00:00:00 2001 From: Jonas Kaninda Date: Sat, 2 Nov 2024 21:40:13 +0100 Subject: [PATCH] update Docker deployment example --- compose.yaml | 14 -------------- examples/compose.yaml | 2 +- 2 files changed, 1 insertion(+), 15 deletions(-) delete mode 100644 compose.yaml diff --git a/compose.yaml b/compose.yaml deleted file mode 100644 index f8ed22b..0000000 --- a/compose.yaml +++ /dev/null @@ -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/ \ No newline at end of file diff --git a/examples/compose.yaml b/examples/compose.yaml index f8ed22b..beb1c4c 100644 --- a/examples/compose.yaml +++ b/examples/compose.yaml @@ -3,7 +3,7 @@ services: image: jkaninda/goma-gateway command: server healthcheck: - test: curl -f http://localhost/healthz || exit 1 + test: curl -f http://localhost/readyz || exit 1 interval: 30s retries: 5 start_period: 20s