Image-only compose, to isolate whether the Gitea failure is specific to build steps

This commit is contained in:
Mathew Lewis 2026-08-26 22:37:37 -07:00
parent 47fe3c33e6
commit 96099dd42b

View File

@ -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