From b8ccd00cb40433d1ecf7af728556959e68bbdfc1 Mon Sep 17 00:00:00 2001 From: Francesco Date: Wed, 18 Feb 2026 06:43:44 +0000 Subject: [PATCH] Fix docker-compose.yml - remove external network Remove 'external: true' from the fiscal network to allow Docker Compose to create it automatically during deployment. This fixes the deployment failure in Coolify where the network doesn't exist. --- docker-compose.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 618e6a0..79742df 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -57,4 +57,5 @@ volumes: networks: fiscal: - external: true + # Remove external: true to let Docker Compose create the network automatically + # This is required for Coolify deployment where the network doesn't exist yet