auth, trips and join trips

This commit is contained in:
2026-04-16 14:51:54 +07:00
parent de0d1c5413
commit 237caad488
49 changed files with 11343 additions and 334 deletions
+18
View File
@@ -0,0 +1,18 @@
version: "3.9"
services:
postgres:
image: postgres:15
container_name: setrip-postgres
restart: always
ports:
- "5432:5432"
environment:
POSTGRES_USER: setrip_user
POSTGRES_PASSWORD: setrip_password
POSTGRES_DB: setrip_db
volumes:
- postgres_data:/var/lib/postgresql/data
volumes:
postgres_data: