first commit

This commit is contained in:
root
2025-12-05 07:14:11 +00:00
commit 2ed4393eb9
129 changed files with 20524 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
services:
mongo:
image: mongo:8.2.2-noble
environment:
MONGO_INITDB_ROOT_USERNAME: sigma
MONGO_INITDB_ROOT_PASSWORD: supersecret
MONGO_INITDB_DATABASE: sigma
ports:
- 27017:27017
volumes:
- mongo-data:/data/db
postgres:
image: postgres:18.1-alpine
environment:
POSTGRES_USER: sigma
POSTGRES_PASSWORD: supersecret
POSTGRES_DB: sigma
ports:
- 5432:5432
volumes:
- postgres-data:/var/lib/postgresql/data
volumes:
postgres-data:
mongo-data: