From 572a393440b39a838b99227ba2222a210a495fac Mon Sep 17 00:00:00 2001 From: IwanIDev Date: Wed, 4 Mar 2026 17:47:43 +0000 Subject: Refactor Docker setup: replace inline Nginx configuration with external file and update Docker stack port configuration --- docker-stack.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'docker-stack.yml') diff --git a/docker-stack.yml b/docker-stack.yml index 9b10293..730e730 100644 --- a/docker-stack.yml +++ b/docker-stack.yml @@ -4,9 +4,12 @@ services: web: image: ${IMAGE_NAME} ports: - - "8280:80" + - target: 80 + published: 8280 + protocol: tcp + mode: host deploy: - replicas: 2 + replicas: 1 update_config: parallelism: 1 delay: 10s -- cgit