Skip to content

Quick setup of the prebuilt Platform Server and UI images via Docker Compose

Notifications You must be signed in to change notification settings

agynio/bootstrap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bootstrap

Quickstart

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/.env

Quick start (default: solo agent)

git clone --recurse-submodules https://github.com/agynio/bootstrap.git
cd bootstrap/agyn
docker compose up -d

Reset graph to Team

# 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

Reset graph to Solo Agent

# 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.yaml is the compose file, and the graph submodule is required.
  • The stack now includes the docker-runner service, which brokers privileged Docker access for the platform-server. Ensure the host socket is available. The default shared secret is change-me; override DOCKER_RUNNER_SHARED_SECRET in agyn/.env for shared deployments.

About

Quick setup of the prebuilt Platform Server and UI images via Docker Compose

Resources

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages