feat: Sync to OSS repo

This commit is contained in:
Wanjohi
2026-08-06 22:13:51 +03:00
parent 46d2a56180
commit 3faac3008f
144 changed files with 27561 additions and 0 deletions

17
docker-compose.yml Normal file
View File

@@ -0,0 +1,17 @@
version: '3.8'
services:
postgres:
image: docker.io/postgres:18-alpine
container_name: nestri_postgres
environment:
POSTGRES_USER: postgres # Matches: user: 'postgres'
POSTGRES_PASSWORD: postgres # Matches: password: 'postgres'
POSTGRES_DB: nestri # Matches: database: 'nestri'
ports:
- '5432:5432' # Matches: port: 5432
volumes:
- nestri_data:/var/lib/postgresql
volumes:
nestri_data: # Keeps your data safe when container restarts