Template
1
0

feat: checkpoint

This commit is contained in:
2025-11-23 22:57:43 +01:00
parent 7df57522d2
commit 5d45e273ee
160 changed files with 10160 additions and 1476 deletions

45
docker-compose.yml Normal file
View File

@@ -0,0 +1,45 @@
networks:
server:
name: server
volumes:
mongo:
driver: local
services:
# MongoDB
# --------------------------------------------------------------------------------
# Used by event store and read store for managing and reading application data.
mongo:
restart: unless-stopped
image: mongo:8
container_name: boilerplate_mongo
ports:
- 6017:27017
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: password
volumes:
- mongo:/data/db
networks:
- server
# Cerbos
# --------------------------------------------------------------------------------
# Policy engine for application access control.
cerbos:
restart: unless-stopped
image: ghcr.io/cerbos/cerbos:latest
container_name: boilerplate_cerbos
command: ["server", "--config=/config.yaml"]
ports:
- 6592:3592
- 6593:3593
- 6594:3594
volumes:
- ./cerbos.yaml:/config.yaml
networks:
- server