interface with db

This commit is contained in:
2025-01-12 01:14:50 -05:00
parent f02676ba2e
commit 07ab1fb40d
13 changed files with 366 additions and 29 deletions

View File

@@ -11,4 +11,17 @@ services:
- /var/run/docker.sock:/var/run/docker.sock
restart: "no"
ports:
- 8080:8080
- 8080:8080
depends_on:
- postgres
postgres:
container_name: archy-postgres
image: postgres:17-alpine
environment:
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
POSTGRES_USER: archery
POSTGRES_DB: archery
volumes:
- ./config/postgres:/var/lib/postgresql/data
restart: "no"