Migrate to PostgreSQL and fix related issues

This commit is contained in:
William Bouzourène 2025-05-12 21:10:40 +02:00
parent 0b8fbea6c3
commit a89a9776c3
Signed by: bouzoure
SSH key fingerprint: SHA256:19MbXpLua4rUtk8tunMesD8KUKb91LXLHg8E/qTooww
17 changed files with 176 additions and 174 deletions

14
compose.yml Normal file
View file

@ -0,0 +1,14 @@
services:
postgres:
image: postgres:latest
container_name: camarades-postgres
ports:
- "127.0.0.1:5432:5432"
environment:
POSTGRES_USER: camarades
POSTGRES_PASSWORD: camarades
POSTGRES_DB: camarades
volumes:
- postgres_data:/var/lib/postgresql/data
volumes:
postgres_data: