feat: modularize deployment by adding environment-specific compose configurations and standardizing pocketbase data paths
All checks were successful
On Push to Main / test (push) Successful in 38s
On Push to Main / publish (push) Successful in 1m7s
On Push to Main / deploy-dev (push) Successful in 1m41s

This commit is contained in:
RaymondVerhoef
2026-05-16 18:22:19 +02:00
parent 4b7562749d
commit 6e25cdbf25
3 changed files with 3 additions and 3 deletions

View File

@@ -16,7 +16,7 @@ services:
image: ghcr.io/muchobien/pocketbase:latest
container_name: pocketbase-learning
restart: unless-stopped
command: ["serve", "--http=0.0.0.0:8090"]
command: ["serve", "--http=0.0.0.0:8090", "--dir=/pb/pb_data"]
volumes:
- pb_data:/pb/pb_data
networks:

View File

@@ -19,7 +19,7 @@ services:
image: ghcr.io/muchobien/pocketbase:latest
container_name: pocketbase-learning
restart: unless-stopped
command: ["serve", "--http=0.0.0.0:8090"]
command: ["serve", "--http=0.0.0.0:8090", "--dir=/pb/pb_data"]
volumes:
- pb_data:/pb/pb_data
networks: