Files
PilotVault/API Server/docker-compose.yml
T
tajniak81andClaude Opus 4.8 afc6952eda Initial commit: PilotVault multi-service project
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>
2026-07-13 11:43:33 +02:00

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