Add API Server (Go/PocketBase), Web App (Go BFF + Vue), Fly App (Flutter/DJI MSDK), Adobe Plugin, and Docker/Docker AIO deployment configs. Design assets and build artifacts are gitignored. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
13 lines
352 B
YAML
13 lines
352 B
YAML
services:
|
|
api-server:
|
|
build: .
|
|
image: pilotvault-api-server
|
|
container_name: pilotvault-api-server
|
|
# Config comes from .env (POCKETBASE_URL, CORS_ALLOW_ORIGINS, and the
|
|
# optional POCKETBASE_ADMIN_* service account). API_ADDR defaults to :8080.
|
|
env_file:
|
|
- .env
|
|
ports:
|
|
- "8080:8080"
|
|
restart: unless-stopped
|