feat: docker compose file for db

This commit is contained in:
2025-05-18 11:48:13 +02:00
parent cbd2091e65
commit 76f64f16ba

12
docker-compose.yml Normal file
View File

@ -0,0 +1,12 @@
services:
db:
image: postgres
restart: always
shm_size: 128mb
environment:
POSTGRES_USER: guard
POSTGRES_PASSWORD: guard
ports:
- "5432:5432"