This commit is contained in:
counterweight 2025-06-14 22:14:07 +02:00
parent 26bfbef4fc
commit 7ae943a5b5
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C
3 changed files with 17 additions and 0 deletions

11
docker-compose.yml Normal file
View file

@ -0,0 +1,11 @@
version: '3.8'
services:
postgres:
image: postgres:17
environment:
POSTGRES_DB: ${POSTGRES_DB}
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
ports:
- "${POSTGRES_PORT}:${POSTGRES_PORT}"