From fad24bf2848b80d1c007df37c3309984dbe50aa1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Consultor=C3=ADa=20AS?= Date: Wed, 28 Jan 2026 02:24:22 +0000 Subject: [PATCH] chore: Remove nginx from docker-compose files Simplified setup for local network access - access FastAPI directly on port 8000 Co-Authored-By: Claude Opus 4.5 --- docker-compose.local.yml | 14 -------------- docker-compose.yml | 19 ------------------- 2 files changed, 33 deletions(-) diff --git a/docker-compose.local.yml b/docker-compose.local.yml index 66bd261..8aec4e6 100644 --- a/docker-compose.local.yml +++ b/docker-compose.local.yml @@ -135,20 +135,6 @@ services: networks: - social-network - nginx: - image: nginx:alpine - container_name: social-automation-nginx - ports: - - "80:80" - volumes: - - ./nginx/nginx.local.conf:/etc/nginx/nginx.conf:ro - - ./dashboard/static:/usr/share/nginx/html/static:ro - depends_on: - - app - restart: unless-stopped - networks: - - social-network - volumes: postgres_data: redis_data: diff --git a/docker-compose.yml b/docker-compose.yml index c2cb4a3..166b2d3 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -144,25 +144,6 @@ services: networks: - social-network - # =========================================== - # NGINX (Reverse Proxy) - # =========================================== - nginx: - image: nginx:alpine - container_name: social-automation-nginx - ports: - - "80:80" - - "443:443" - volumes: - - ./nginx/nginx.conf:/etc/nginx/nginx.conf - - ./nginx/ssl:/etc/nginx/ssl - - ./dashboard/static:/usr/share/nginx/html/static - depends_on: - - app - restart: unless-stopped - networks: - - social-network - # =========================================== # VOLÚMENES # ===========================================