Files
learning-platform/docker-compose.yml
RaymondVerhoef 271baba860
All checks were successful
On Push to Main / test (push) Successful in 40s
On Push to Main / publish (push) Successful in 1m6s
On Push to Main / deploy-dev (push) Successful in 1m41s
chore: add environment variable configuration for Anthropic API key
2026-05-17 10:39:40 +02:00

20 lines
424 B
YAML

services:
frontend:
build: .
restart: unless-stopped
environment:
- ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY}
ports:
- "8080:80"
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
volumes:
pb_data: