Files
openwork/packaging/docker/docker-compose.yml
ben 6284b581f7 chore: rename openwrk to openwork-orchestrator (#573)
* 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.
2026-02-15 14:24:42 -08:00

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