Adding Docker environment + dependencies

This commit is contained in:
Alexis Leboeuf
2026-01-05 11:46:02 +01:00
parent bf45847ab8
commit 22fce95294
3 changed files with 29 additions and 2 deletions

View File

@@ -27,3 +27,20 @@ services:
interval: 5s
timeout: 5s
retries: 20
postgres:
image: postgres:16
container_name: frisbyee-postgres
ports:
- "5432:5432"
environment:
POSTGRES_DB: frisbyee
POSTGRES_USER: frisbyee_user
POSTGRES_PASSWORD: secret
volumes:
- postgres_data:/var/lib/postgresql/data
volumes:
postgres_data:
version: "3.9"