From 2a202153cc3c74ba9639ef0fe84189e279171904 Mon Sep 17 00:00:00 2001 From: "DESKTOP-72TV0V4\\caoxiaozhu" Date: Sat, 9 May 2026 12:47:20 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=20docker-compose=20?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E6=94=AF=E6=8C=81=20SSH=20=E5=92=8C=20vite?= =?UTF-8?q?=20proxy?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker-compose.yml | 25 +------------------------ 1 file changed, 1 insertion(+), 24 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 7982921..83c5b2f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,13 +1,11 @@ services: main: - image: ubuntu-dev:latest + image: x-financial-dev:latest container_name: x-financial-main restart: unless-stopped depends_on: onlyoffice: condition: service_started - postgres: - condition: service_healthy environment: WEB_HOST: 0.0.0.0 SERVER_HOST: 0.0.0.0 @@ -54,24 +52,3 @@ services: timeout: 5s retries: 10 start_period: 60s - - postgres: - image: postgres:16-alpine - container_name: x-financial-postgres - restart: unless-stopped - environment: - POSTGRES_DB: ${POSTGRES_DB:-x_financial} - POSTGRES_USER: ${POSTGRES_USER:-postgres} - POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-postgres} - ports: - - "${POSTGRES_EXPOSE_PORT:-55432}:5432" - volumes: - - ./postgres_data:/var/lib/postgresql/data - healthcheck: - test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER:-postgres} -d ${POSTGRES_DB:-x_financial}"] - interval: 10s - timeout: 5s - retries: 10 - -volumes: - postgres_data: