mirror of
https://github.com/different-ai/openwork
synced 2026-04-26 01:25:10 +02:00
* chore(orchestrator): rename openwrk to openwork-orchestrator Rename the host package and internal references from openwrk to openwork-orchestrator, and expose the CLI as 'openwork'. Update desktop/UI runtime wiring, release workflows, and docs; bundle the Tauri sidecar as 'openwork-orchestrator' to avoid Cargo package name collisions. * chore: keep orchestrator publish script executable * chore: update pnpm lockfile * chore: sync lockfile with orchestrator deps * docs: update orchestrator usage + release notes Document that openwork-orchestrator installs the 'openwork' CLI, update release command wording, and remove obsolete workflow branch trigger.
24 lines
790 B
YAML
24 lines
790 B
YAML
services:
|
|
openwork-host:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
args:
|
|
# Keep this in sync with packages/orchestrator/package.json if you want a pinned release.
|
|
OPENWORK_ORCHESTRATOR_VERSION: 0.11.22
|
|
ports:
|
|
- "8787:8787"
|
|
environment:
|
|
# Set these explicitly for stable sharing.
|
|
# OPENWORK_TOKEN: "..."
|
|
# OPENWORK_HOST_TOKEN: "..."
|
|
# Optional: OPENWORK_APPROVAL_MODE: "auto"
|
|
# Optional: OPENWORK_APPROVAL_TIMEOUT_MS: "30000"
|
|
OPENWORK_DATA_DIR: /data/openwork-orchestrator
|
|
OPENWORK_SIDECAR_DIR: /data/sidecars
|
|
volumes:
|
|
# Mount an existing project/workspace here.
|
|
- ./workspace:/workspace
|
|
# Persistent host data (OpenCode caches, server config, tokens).
|
|
- ./data:/data
|