Runs the prebuilt Platform Server and UI images via Docker Compose (not a development environment). For development workflows, see agynio/platform.
Prereqs: Docker with Compose v2 enabled and access to the host Docker socket (/var/run/docker.sock).
For local development you can cd agyn && docker compose up -d without creating an env file; the stack defaults DOCKER_RUNNER_SHARED_SECRET to change-me so it just works out of the box.
To override the secret (recommended for team or shared environments), copy agyn/.env.example to agyn/.env and set a long random value:
cp agyn/.env.example agyn/.env
echo "DOCKER_RUNNER_SHARED_SECRET=$(openssl rand -hex 32)" >> agyn/.envgit clone --recurse-submodules https://github.com/agynio/bootstrap.git
cd bootstrap/agyn
docker compose up -d# switch graph template
cd bootstrap/graph
git fetch origin
git checkout main
git reset --hard origin/example/team
# restart services
cd ../agyn
docker compose up -d --force-recreate
# switch graph template
cd bootstrap/graph
git fetch origin
git checkout main
git reset --hard origin/example/solo-agent
# restart services
cd ../agyn
docker compose up -d --force-recreate
Open http://localhost:2496 in your browser.
Notes:
agyn/docker-compose.yamlis the compose file, and thegraphsubmodule is required.- The stack now includes the
docker-runnerservice, which brokers privileged Docker access for the platform-server. Ensure the host socket is available. The default shared secret ischange-me; overrideDOCKER_RUNNER_SHARED_SECRETinagyn/.envfor shared deployments.