From c063ca5a86a3ce1e34ffcb023b9b51463f1ca9c3 Mon Sep 17 00:00:00 2001 From: kimachinkiy <48508661+kimachinskiy@users.noreply.github.com> Date: Tue, 10 Oct 2023 21:59:21 +0300 Subject: [PATCH] Update --- docker-compose.dev.yml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/docker-compose.dev.yml b/docker-compose.dev.yml index 24e4b4310..c888473b8 100644 --- a/docker-compose.dev.yml +++ b/docker-compose.dev.yml @@ -10,8 +10,8 @@ services: # - ./:/Forum - static:/home/forum/app/public/static - media:/home/forum/app/public/media - # ports: - # - 8000:8000 + ports: + - 8000:8000 environment: - DEBUG=${DEBUG} - SECRET_KEY=${SECRET_KEY} @@ -31,19 +31,19 @@ services: - CORS_ORIGIN_WHITELIST=${CORS_ORIGIN_WHITELIST} networks: - forum_network - frontend: - container_name: frontend - volumes: - - static:/home/forum/app/public/static - environment: - - REACT_APP_BASE_API_URL=${REACT_APP_BASE_API_URL} - ports: - - 80:80 - build: - context: ./FrontEnd - target: production - networks: - - forum_network + # frontend: + # container_name: frontend + # volumes: + # - static:/home/forum/app/public/static + # environment: + # - REACT_APP_BASE_API_URL=${REACT_APP_BASE_API_URL} + # ports: + # - 80:80 + # build: + # context: ./FrontEnd + # target: production + # networks: + # - forum_network networks: forum_network: