From 5bcb057d44c65aff86ba47def4dcbe50c1a3ac39 Mon Sep 17 00:00:00 2001 From: ryuupendragon Date: Mon, 14 Jul 2025 23:03:48 +0530 Subject: [PATCH] Remove network for nextcloud --- nextcloud/docker-compose.yml | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/nextcloud/docker-compose.yml b/nextcloud/docker-compose.yml index a2fc169..b0d426d 100644 --- a/nextcloud/docker-compose.yml +++ b/nextcloud/docker-compose.yml @@ -20,8 +20,6 @@ services: # Network configuration ports: - ${DB_PORT}:5432 # PostgreSQL port - networks: - - backend # Connects to backend network # Health monitoring healthcheck: @@ -48,8 +46,6 @@ services: # Network configuration ports: - ${VALKEY_PORT}:6379 # Valkey port - networks: - - backend # Connects to backend network # Health monitoring healthcheck: @@ -97,9 +93,6 @@ services: # Network configuration ports: - ${APP_PORT}:80 - networks: - - frontend # Connects to frontend network - - backend # Connects to backend network # Nextcloud Cron Service nextcloud_cron: @@ -135,15 +128,3 @@ services: # Persistent storage configuration volumes: - ${APPDATA_PATH}/nextcloud/app:/var/www/html - - # Network configuration - networks: - - frontend # Connects to frontend network - - backend # Connects to backend network - -# External network definitions -networks: - frontend: - external: true # Uses pre-existing network - backend: - external: true # Uses pre-existing network