first version

This commit is contained in:
2025-09-17 16:43:44 -05:00
parent 810fad4beb
commit 6d12e7e151
28 changed files with 939 additions and 153 deletions

25
docker-compose.yml Normal file
View File

@@ -0,0 +1,25 @@
services:
mail-admin:
build: .
ports:
- "3000:3000"
environment:
- DATABASE_URL=postgresql://postgres:password@postgres:5433/mydb?schema=public
# ... deine bestehenden Env-Vars (AWS, SMTP, APP_PASSWORD)
depends_on:
- postgres
postgres:
image: postgres:latest
restart: always
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: fiesta # Ändere das!
POSTGRES_DB: mydb
ports:
- "5433:5432"
volumes:
- postgres-data:/var/lib/postgresql/data
volumes:
postgres-data: