Files
learning-platform/infra/production/site/compose.yml
RaymondVerhoef aaafe413f6
All checks were successful
On Push to Main / test (push) Successful in 18s
On Push to Main / publish (push) Successful in 52s
On Push to Main / deploy-dev (push) Successful in 1m27s
feat: add docker-compose configuration for production learning platform and pocketbase services
2026-05-14 22:30:52 +02:00

27 lines
578 B
YAML

version: "3"
networks:
learning-platform:
external: true
volumes:
pb_data:
services:
learning-platform:
image: git.labs.respellion.tech/respellion/learning-platform/learning-platform:0.1.0
container_name: learning-platform
restart: unless-stopped
networks:
- learning-platform
pocketbase-learning:
image: ghcr.io/muchobien/pocketbase:latest
container_name: pocketbase-learning
restart: unless-stopped
command: ["serve", "--http=0.0.0.0:8090"]
volumes:
- pb_data:/pb/pb_data
networks:
- learning-platform