Make the web image drop-in for a Honcho docker-compose stack:
- nginx reverse-proxies /v3 and /health to $HONCHO_UPSTREAM (variable +
Docker resolver so it starts even before the upstream resolves), giving
the SPA a same-origin path to Honcho with no browser CORS.
- Runtime config: an entrypoint writes config.js from
OPENCONCHO_DEFAULT_HONCHO_URL, so one prebuilt image targets any backend
("same-origin" | absolute URL | empty). SPA seeds a first-run default
instance from it (additive; no-op in dev/desktop).
- docker-compose.yml example service + GHCR multi-arch publish workflow on
release.
- nginx.conf -> envsubst template; docs rewritten.
Closes #21. Closes #31.
24 lines
1022 B
YAML
24 lines
1022 B
YAML
# Example: add OpenConcho's web UI to a self-hosted Honcho Docker Compose stack.
|
|
#
|
|
# Drop this `openconcho` service into the Compose project that already runs your
|
|
# Honcho `api` service. nginx proxies /v3 and /health to the API, so the browser
|
|
# makes same-origin requests and never hits CORS.
|
|
services:
|
|
openconcho:
|
|
image: ghcr.io/offendingcommit/openconcho-web:latest
|
|
# Or build from this repo instead of pulling the published image:
|
|
# build: .
|
|
environment:
|
|
# nginx reverse-proxies /v3 and /health to this upstream (the Honcho API).
|
|
HONCHO_UPSTREAM: http://api:8000
|
|
# The SPA defaults its Honcho base URL to its own origin, so requests flow
|
|
# through the proxy above — no browser CORS, token never leaves the origin.
|
|
# Set to an absolute URL instead to point the UI at a different backend.
|
|
OPENCONCHO_DEFAULT_HONCHO_URL: same-origin
|
|
ports:
|
|
- "127.0.0.1:8080:8080"
|
|
depends_on:
|
|
api:
|
|
condition: service_healthy
|
|
restart: unless-stopped
|