Add docker compose files & Fix routes

This commit is contained in:
2025-11-13 02:32:35 +03:00
parent f9a1609e0c
commit 86d7545f7c
4 changed files with 60 additions and 62 deletions

9
compose.yaml Normal file
View File

@ -0,0 +1,9 @@
services:
database:
image: docker.io/postgres:17
environment:
POSTGRES_DB: ${POSTGRES_DB}
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
ports:
- ${POSTGRES_PORT}:${POSTGRES_PORT}