Files
learning-platform/docker-compose.yml
RaymondVerhoef 3afef7785e
All checks were successful
On Push to Main / test (push) Successful in 43s
On Push to Main / publish (push) Successful in 1m6s
On Push to Main / deploy-dev (push) Successful in 1m38s
feat: perform extensive database collection migrations and updates to PocketBase schema
2026-05-18 20:12:40 +02:00

21 lines
466 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
- ./pb_migrations:/pb/pb_migrations
volumes:
pb_data: