Files
attune/docker/distributable
..
2026-04-01 19:27:37 -05:00
2026-03-26 12:26:23 -05:00
2026-03-26 12:26:23 -05:00
2026-04-01 19:27:37 -05:00
2026-03-27 16:37:46 -05:00
2026-03-27 16:37:46 -05:00
2026-03-26 12:26:23 -05:00

Attune Docker Dist Bundle

This directory is a distributable Docker bundle built from the main workspace compose setup.

It is designed to run Attune without building the Rust services locally:

  • api, executor, notifier, agent, and web pull published images
  • database bootstrap, user bootstrap, and pack loading run from local scripts shipped in this bundle
  • workers and sensor still use stock runtime images plus the published injected agent binaries

Registry Defaults

The compose file defaults to:

  • registry: git.rdrx.app/attune-system
  • tag: latest

Override them with env vars:

export ATTUNE_IMAGE_REGISTRY=git.rdrx.app/attune-system
export ATTUNE_IMAGE_TAG=latest

If the registry requires auth:

docker login git.rdrx.app

Run

From this directory:

docker compose up -d

Or with an explicit tag:

ATTUNE_IMAGE_TAG=sha-xxxxxxxxxxxx docker compose up -d

Rebuild Bundle

Refresh this bundle and create a tarball from the workspace root:

bash scripts/package-docker-dist.sh

Included Assets

  • docker-compose.yaml - published-image compose stack
  • config.docker.yaml - container config mounted into services
  • docker/ - init scripts and SQL helpers
  • migrations/ - schema migrations for the bootstrap job
  • packs/core/ - builtin core pack content
  • scripts/load_core_pack.py - pack loader used by init-packs

Current Limitation

The publish workflow does not currently publish dedicated worker or sensor runtime images. This bundle therefore keeps using stock runtime images with the published attune/agent image for injection.