From 3ecac5a8549b5c2f692a06a54b600be553eed648 Mon Sep 17 00:00:00 2001 From: "theis.gaedigk" Date: Thu, 31 Jul 2025 17:38:06 +0200 Subject: [PATCH] refactor: comment out frontend service configuration in docker-compose.yml --- docker-compose.yml | 30 +++++++++++------------------- 1 file changed, 11 insertions(+), 19 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 1b83b0d..5a0d0f3 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,29 +1,21 @@ services: - frontend: - container_name: frontend - build: ./frontend - ports: - - "7002:7002" - networks: - - proxynet - environment: - - CHOKIDAR_USEPOLLING=true - volumes: - - ./frontend:/app - - /app/node_modules - restart: unless-stopped + # frontend: + # container_name: frontend + # build: ./frontend + # ports: + # - "7002:7002" + # environment: + # - CHOKIDAR_USEPOLLING=true + # volumes: + # - ./frontend:/app + # - /app/node_modules + # restart: unless-stopped backend: container_name: backend build: ./backend ports: - "7001:7001" - networks: - - proxynet volumes: - ./backend:/bikelane-backend restart: unless-stopped - -networks: - proxynet: - external: true