From 7cb2f4df1c91afc013c1ef8d257ffd4d91310546 Mon Sep 17 00:00:00 2001 From: ilya_zahvatkin Date: Tue, 11 Mar 2025 10:46:48 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A3=D0=B4=D0=B0=D0=BB=D0=B8=D1=82=D1=8C=20do?= =?UTF-8?q?cker-compose.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker-compose.yml | 52 ---------------------------------------------- 1 file changed, 52 deletions(-) delete mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index 909b02b..0000000 --- a/docker-compose.yml +++ /dev/null @@ -1,52 +0,0 @@ -# version: '3.8' - -# services: -# web: -# build: -# context: . -# dockerfile: Dockerfile -# ports: -# - "80:80" -# - "3000:3000" -# restart: unless-stopped -# # Добавьте volumes если нужно хранить данные постоянно -# # volumes: -# # - ./logs:/var/log/nginx -# networks: -# - app-network - -# networks: -# app-network: -# driver: bridge - - -version: '3' -services: - app: - build: . - # container_name: app - restart: always - # ports: - # - "80:80" - # - "443:443" - # networks: - # - app-network - -# nginx: -# image: nginx:alpine -# container_name: nginx -# ports: -# - "80:80" -# - "443:443" -# volumes: -# - ./nginx/conf.d:/etc/nginx/conf.d -# - ./nginx/ssl:/etc/nginx/ssl -# depends_on: -# - nextjs -# networks: -# - app-network -# restart: always - -# networks: -# app-network: -# driver: bridge