From 1a844132e6afd3359205e9fa1c1a025b4ded53e7 Mon Sep 17 00:00:00 2001 From: muhammadvadud Date: Wed, 3 Dec 2025 00:16:16 +0500 Subject: [PATCH] Fix typo --- stack.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/stack.yaml b/stack.yaml index cbb9d22..d3a8a87 100644 --- a/stack.yaml +++ b/stack.yaml @@ -34,7 +34,7 @@ services: cpus: '1.00' memory: 512M healthcheck: - test: ["CMD-SHELL", "pg_isready -U postgres -d uzxarid"] + test: [ "CMD-SHELL", "pg_isready -U postgres -d uzxarid" ] interval: 10s timeout: 5s retries: 5 @@ -47,7 +47,7 @@ services: redis: image: redis:7-alpine - command: ["redis-server", "--appendonly", "yes"] + command: [ "redis-server", "--appendonly", "yes" ] networks: - uzxarid volumes: @@ -72,7 +72,7 @@ services: cpus: '0.50' memory: 256M healthcheck: - test: ["CMD", "redis-cli", "ping"] + test: [ "CMD", "redis-cli", "ping" ] interval: 15s timeout: 10s retries: 5 @@ -117,7 +117,7 @@ services: cpus: '1.50' memory: 1024M healthcheck: - test: ["CMD-SHELL", "curl -f http://localhost:8000/health/ || exit 1"] + test: [ "CMD-SHELL", "curl -f http://localhost:8000/health/ || exit 1" ] interval: 15s timeout: 15s retries: 5 @@ -133,7 +133,7 @@ services: ports: - mode: ingress target: 80 - published: ${PORT:?enviromentda PORT topilmadi} + published: 8034 protocol: tcp volumes: - type: bind @@ -167,7 +167,7 @@ services: - /var/run - /var/tmp healthcheck: - test: ["CMD-SHELL", "curl -f http://localhost/health/ || exit 1"] + test: [ "CMD-SHELL", "curl -f http://localhost/health/ || exit 1" ] interval: 10s timeout: 5s retries: 5 -- 2.49.1