Files
learning-platform/infra/development/site/compose.yml
RaymondVerhoef e68335e159
All checks were successful
On Push to Main / test (push) Successful in 41s
On Push to Main / publish (push) Successful in 1m8s
On Push to Main / deploy-dev (push) Successful in 1m39s
feat: implement automated Ansible deployment workflows and secure Anthropic API key management via reverse proxy injection
2026-05-17 10:00:14 +02:00

29 lines
664 B
YAML

version: "3"
networks:
learning-platform:
external: true
services:
learning-platform:
image: git.labs.respellion.tech/respellion/learning-platform/learning-platform:latest
container_name: learning-platform
restart: unless-stopped
environment:
- ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY}
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
volumes:
pb_data: