chore(docker): add containerized deployment and nginx proxy

This commit is contained in:
Anton
2026-04-23 16:06:07 +03:00
parent 5f6a551b6c
commit d84b9b5ee7
5 changed files with 192 additions and 0 deletions

15
docker-compose.dev.yml Normal file
View File

@@ -0,0 +1,15 @@
services:
postgres:
image: postgres:16-alpine
restart: unless-stopped
environment:
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
POSTGRES_DB: ${POSTGRES_DB}
ports:
- "5432:5432"
volumes:
- pgdata_dev:/var/lib/postgresql/data
volumes:
pgdata_dev: