init commit

This commit is contained in:
2025-07-14 18:32:55 +03:00
commit e54e57ca3d
25 changed files with 981 additions and 0 deletions

View File

@ -0,0 +1,20 @@
version: '3.9'
services:
postgres:
image: postgres:latest
container_name: postgres_container
environment:
POSTGRES_USER: ADMIN
POSTGRES_PASSWORD: 123123
POSTGRES_DB: sonoma-db
ports:
- "5432:5432"
volumes:
- pgdata:/var/lib/postgresql/data/pgdata
restart: unless-stopped
tty: true
stdin_open: true
volumes:
pgdata: