init: first steps

This commit is contained in:
2025-07-20 23:50:47 +03:00
commit 5f26ad6941
25 changed files with 1134 additions and 0 deletions

16
docker-compose.yml Normal file
View File

@@ -0,0 +1,16 @@
services:
postgresql:
image: postgres:latest
environment:
- POSTGRES_USER=status
- POSTGRES_DB=status
- POSTGRES_PASSWORD=status
- POSTGRES_HOST_AUTH_METHOD=trust
volumes:
- database_postgres:/var/lib/postgresql/data
ports:
- "5444:5432"
volumes:
database_postgres: