Recipie/docker-compose.yml
2025-08-13 20:42:08 +12:00

30 lines
639 B
YAML

# services:
# web:
# build: .
# env_file: .env
# ports:
# - "4321:4321"
# pb:
# build: api
# env_file: .env
# volumes:
# - ./api/pb_data:/pb/pb_data
# - ./api/pb_migrations:/pb/pb_migrations
# - ./api/pb_hooks:/pb/pb_hooks
# ports:
# - "8080:8080"
services:
recipie:
build:
context: .
dockerfile: Dockerfile.combined
env_file: .env
ports:
- "4321:4321"
- "8080:8080" # optional, for manual pocketbase access
volumes:
- ./api/pb_data:/pb/pb_data
- ./api/pb_migrations:/pb/pb_migrations
- ./api/pb_hooks:/pb/pb_hooks