Files
learning-platform/docker-compose.yml
RaymondVerhoef 9f3e1113a6
All checks were successful
On Push to Main / test (push) Successful in 30s
On Push to Main / publish (push) Successful in 59s
On Push to Main / deploy-dev (push) Successful in 1m32s
chore: update pocketbase command to include migrations directory and set working directory
2026-05-18 20:46:34 +02:00

22 lines
524 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
working_dir: /pb
command: ["serve", "--http=0.0.0.0:8090", "--dir=/pb/pb_data", "--migrationsDir=/pb/pb_migrations"]
volumes:
- pb_data:/pb/pb_data
- ./pb_migrations:/pb/pb_migrations
volumes:
pb_data: