Compare commits

..

3 Commits

Author SHA1 Message Date
Mathew Lewis
c2f69703ab main v2: fresh commit after the signature fix 2026-08-27 17:29:05 -07:00
Mathew Lewis
ba5e2d54f2 main retest: label change to exercise auto_deploy_commits 2026-08-27 13:42:58 -07:00
c0bb4f66cc Restore the build-based compose on main 2026-08-26 23:09:24 -07:00

View File

@ -1,8 +1,15 @@
services:
web:
image: nginx:alpine
build:
context: ./web
ports:
- "80:80"
- "3000:3000"
environment:
DATABASE_URL: postgres://demo:demo@db:5432/demo
APP_LABEL: "VeilStream demo main v2"
depends_on:
db:
condition: service_healthy
db:
image: postgres:16-alpine
@ -10,6 +17,8 @@ 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