Files
learning-platform/infra/production/site/compose.yml
RaymondVerhoef 6e25cdbf25
All checks were successful
On Push to Main / test (push) Successful in 38s
On Push to Main / publish (push) Successful in 1m7s
On Push to Main / deploy-dev (push) Successful in 1m41s
feat: modularize deployment by adding environment-specific compose configurations and standardizing pocketbase data paths
2026-05-16 18:22:19 +02:00

27 lines
600 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:latest
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", "--dir=/pb/pb_data"]
volumes:
- pb_data:/pb/pb_data
networks:
- learning-platform