working auth + users systems

This commit is contained in:
c-d-p
2025-04-16 21:32:57 +02:00
parent 516adc606d
commit 18ddb2f332
56 changed files with 943 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
# docker-compose.yml
services:
postgres:
image: postgres:14
environment:
POSTGRES_USER: maia
POSTGRES_PASSWORD: maia
POSTGRES_DB: maia
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
redis:
image: redis:7
ports:
- "6379:6379"
volumes:
- redis_data:/data
volumes:
postgres_data:
redis_data: