ait-server
Owns the remote protocol, the repository registry, shared workflow state, policy, and the Worker Job queue.
Remote Infrastructure
Local stays the default. Add a remote authority only when shared state or managed CI solves a real coordination problem for you.
ait-serverOwns the remote protocol, the repository registry, shared workflow state, policy, and the Worker Job queue.
ait-runnerPicks up jobs it can handle, materializes the exact Snapshot, runs your repository's CI entrypoint, and sends back the results.
docker network create ait-native
docker volume create ait-native-data
docker run --detach \
--name ait-server \
--network ait-native \
--publish 127.0.0.1:8088:8088 \
--restart unless-stopped \
--volume ait-native-data:/var/lib/ait \
ghcr.io/weita2026/ait-server:1.1.1
curl --fail http://127.0.0.1:8088/healthz
The public GHCR images cover Linux arm64 and amd64. Binding to loopback keeps this off the public network until you deliberately put a secure ingress in front of it.
A server should answer a real coordination problem. It shouldn't be something you set up before you can try AIT at all.