feat: initial commit

This commit is contained in:
Iain Learmonth 2025-12-14 17:47:51 +00:00
commit 075939142f
63 changed files with 9494 additions and 0 deletions

19
docker-compose.yml Normal file
View file

@ -0,0 +1,19 @@
version: '3.7'
services:
app_db:
container_name: app_db
hostname: app_db
image: library/postgres:17.5
environment:
- POSTGRES_USER=app
- POSTGRES_PASSWORD=app
- POSTGRES_DB=app
volumes:
- app_db_data:/var/lib/postgresql/data
ports:
- "5432:5432"
volumes:
app_db_data:
driver: "local"