The combined stack now includes PocketBase as a first-class service instead of assuming an external one: a Docker/pocketbase image built from the release binary that bundles the pb_migrations and upserts the superuser on boot, so a fresh stack checks/creates its collections and super-admin the same way DriverVault does. Add production compose variants (registry images) and .env(.prod).example files for both Docker/ and Docker AIO/, a top-level compose name, a PocketBase healthcheck with a service_healthy dependency, and env-driven ports. Move the containerized PocketBase to :8070 (the live remote PB stays 10.2.1.10:8026). Add a root .dockerignore to trim the repo-root build context used by the pocketbase and AIO images. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
39 lines
1.7 KiB
Bash
39 lines
1.7 KiB
Bash
# PilotVault — production stack config.
|
|
# Copy to .env and fill in, then:
|
|
# docker compose -f docker-compose.prod.yml pull
|
|
# docker compose -f docker-compose.prod.yml up -d
|
|
|
|
# --- Registry images --------------------------------------------------------
|
|
# Defaults point at the internal registry; override to pin a tag or use a mirror.
|
|
PB_IMAGE=10.2.1.10:5500/admin/pilotvault-pocketbase:latest
|
|
API_IMAGE=10.2.1.10:5500/admin/pilotvault-api-server:latest
|
|
WEB_IMAGE=10.2.1.10:5500/admin/pilotvault-web-app:latest
|
|
|
|
# --- PocketBase superuser (required) ----------------------------------------
|
|
# Created/updated on the PocketBase container's first boot. The API Server uses
|
|
# these same credentials to manage the database.
|
|
POCKETBASE_ADMIN_EMAIL=admin@dji.local
|
|
POCKETBASE_ADMIN_PASSWORD=change-me-long-password
|
|
|
|
# The app super-admin login (superadmin@pilotvault.local) is created by the
|
|
# bundled PocketBase migrations on first boot — distinct from the superuser above.
|
|
|
|
# --- API Server -------------------------------------------------------------
|
|
# Allowed CORS origin(s) for the web app (match your public URL / WEB_PORT).
|
|
CORS_ALLOW_ORIGINS=http://localhost:8090
|
|
|
|
# --- Ports ------------------------------------------------------------------
|
|
# WEB_PORT is the public front door (bound on all interfaces).
|
|
WEB_PORT=8090
|
|
# PocketBase admin UI and the API panel are bound to localhost only by default.
|
|
# Set PB_BIND / API_BIND to 0.0.0.0 to expose them on the network.
|
|
PB_PORT=8070
|
|
PB_BIND=127.0.0.1
|
|
API_PORT=8080
|
|
API_BIND=127.0.0.1
|
|
|
|
# --- Storage ----------------------------------------------------------------
|
|
# Default is a Docker-managed named volume ("pb_data"). Set PB_DATA to an
|
|
# absolute host path for a bind mount, e.g. PB_DATA=/srv/pilotvault/pb_data
|
|
PB_DATA=pb_data
|