From 58e44c78532c8f9bc5b90a218499e815d21b6c54 Mon Sep 17 00:00:00 2001 From: Kishor Date: Sat, 3 Jan 2026 00:50:44 +0530 Subject: [PATCH] potential fix for network issue --- docker-compose.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 2dfa346..50cb658 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,6 +1,8 @@ services: void-sentinel: build: . + networks: + - dokploy-network environment: - RUST_LOG - API_KEY @@ -18,17 +20,13 @@ services: - IGNORE_RUDE - API_PORT=8080 restart: unless-stopped - healthcheck: - test: [ "CMD", "curl", "-H", "X-API-Key: ${API_KEY}", "-f", "http://localhost:8080/api/beta_testing" ] - interval: 10s - timeout: 5s - retries: 5 - start_period: 10s web: build: ./web ports: - "3000:3000" + networks: + - dokploy-network environment: - AUTH_SECRET - AUTH_DISCORD_ID @@ -43,3 +41,7 @@ services: void-sentinel: condition: service_healthy restart: unless-stopped + +networks: + dokploy-network: + external: true