From 78f11e1e63081583caf508a2a06b7ea49cdf1d29 Mon Sep 17 00:00:00 2001 From: kyy Date: Wed, 21 Jan 2026 17:48:03 +0900 Subject: [PATCH] =?UTF-8?q?=ED=85=8C=EC=8A=A4=ED=8A=B8=20=ED=8C=8C?= =?UTF-8?q?=EC=9D=BC=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker-compose_local.yaml | 57 --------------------------------------- 1 file changed, 57 deletions(-) delete mode 100644 docker-compose_local.yaml diff --git a/docker-compose_local.yaml b/docker-compose_local.yaml deleted file mode 100644 index 02874c45..00000000 --- a/docker-compose_local.yaml +++ /dev/null @@ -1,57 +0,0 @@ -name: baron-sso - -services: - backend: - build: - context: ./backend - dockerfile: Dockerfile - container_name: baron_backend - restart: unless-stopped - env_file: - - .env - environment: - - APP_ENV=${APP_ENV:-production} - - APP_ENV=production - - COOKIE_SECRET=4d15a1dc777757fb5300e6727368238dc7be055c49b48c56715687547e09778b - - DB_HOST=postgres - - CLICKHOUSE_HOST=clickhouse - - CLICKHOUSE_PORT=${CLICKHOUSE_PORT_NATIVE:-9000} - - CLICKHOUSE_USER=${CLICKHOUSE_USER:-baron} - - CLICKHOUSE_PASSWORD=${CLICKHOUSE_PASSWORD:-password} - ports: - - "${BACKEND_PORT:-3010}:3010" - depends_on: - - infra_check - healthcheck: - test: ["CMD", "wget", "-qO-", "http://127.0.0.1:3010/health"] - interval: 10s - timeout: 5s - retries: 3 - start_period: 10s - networks: - - baron_net - - frontend: - build: - context: ./frontend - dockerfile: Dockerfile - container_name: baron_frontend - restart: unless-stopped - ports: - - "${FRONTEND_PORT:-80}:80" - depends_on: - backend: - condition: service_healthy - networks: - - baron_net - - infra_check: - image: alpine - command: ["echo", "Infrastructure assumed running"] - networks: - - baron_net - -networks: - baron_net: - external: true - name: baron_network