From 96099dd42bb39ff6e4b699cd68cce80ca2791ca6 Mon Sep 17 00:00:00 2001 From: Mathew Lewis Date: Wed, 26 Aug 2026 22:37:37 -0700 Subject: [PATCH] Image-only compose, to isolate whether the Gitea failure is specific to build steps --- docker-compose.yml | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index d015091..cf55019 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,15 +1,8 @@ services: web: - build: - context: ./web + image: nginx:alpine ports: - - "3000:3000" - environment: - DATABASE_URL: postgres://demo:demo@db:5432/demo - APP_LABEL: "VeilStream demo" - depends_on: - db: - condition: service_healthy + - "80:80" db: image: postgres:16-alpine @@ -17,8 +10,6 @@ services: POSTGRES_USER: demo POSTGRES_PASSWORD: demo POSTGRES_DB: demo - volumes: - - ./db/init.sql:/docker-entrypoint-initdb.d/init.sql healthcheck: test: ["CMD-SHELL", "pg_isready -U demo -d demo"] interval: 5s