diff --git a/infra/production/site/compose.yml b/infra/production/site/compose.yml index 375d7f9..9482afd 100644 --- a/infra/production/site/compose.yml +++ b/infra/production/site/compose.yml @@ -4,6 +4,9 @@ networks: learning-platform: external: true +volumes: + pb_data: + services: learning-platform: image: git.labs.respellion.tech/respellion/learning-platform/learning-platform:0.1.0 @@ -11,3 +14,13 @@ services: 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"] + volumes: + - pb_data:/pb/pb_data + networks: + - learning-platform