Initial commit

This commit is contained in:
wangxuming
2026-07-12 15:53:24 +08:00
commit 68d61700d5
252 changed files with 23291 additions and 0 deletions

19
compose.yaml Normal file
View File

@@ -0,0 +1,19 @@
services:
postgres:
image: postgres:17-alpine
environment:
POSTGRES_DB: queue
POSTGRES_USER: queue
POSTGRES_PASSWORD: queue
ports:
- "5432:5432"
healthcheck:
test: ["CMD-SHELL", "pg_isready -U queue -d queue"]
interval: 3s
timeout: 3s
retries: 20
volumes:
- callline-postgres:/var/lib/postgresql/data
volumes:
callline-postgres: