From 1b7161b82bb4a2380fdb7aca35e7799ffa258ffa Mon Sep 17 00:00:00 2001 From: "Gan, Jimmy" Date: Mon, 6 Apr 2026 20:52:15 +0800 Subject: [PATCH] fix: remove manual network connect (already in compose file) The compose file already declares both networks, so the manual docker network connect causes a conflict. --- .gitea/workflows/deploy-dev.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.gitea/workflows/deploy-dev.yml b/.gitea/workflows/deploy-dev.yml index d47c61d..0a2d1ad 100644 --- a/.gitea/workflows/deploy-dev.yml +++ b/.gitea/workflows/deploy-dev.yml @@ -72,9 +72,6 @@ jobs: fi # Use a dedicated project name to avoid killing production (which is project 'nas-dashboard') - # and deploy using theSynced compose file. + # and deploy using the synced compose file. docker compose -f docker-compose.dev.yml -p nas-dashboard-dev down --remove-orphans || true docker compose -f docker-compose.dev.yml -p nas-dashboard-dev up -d --build --pull never - - # Connect to gitea_gitea network for database access (OPC_DB) - docker network connect gitea_gitea nas-dashboard-dev || true