agentbox

(โ˜… 147)

Contain your coding agents (literally)

  • .dockerignore
  • .gitignore
  • docker-compose.yml
  • Dockerfile
  • LICENSE
  • Makefile
  • README.md
  • VERSION

# Installation Guide

1. Get the code
git clone https://github.com/rcarmo/agentbox

Downloads the entire project code from GitHub to your computer.

cd agentbox

Moves into the project folder you just downloaded.

2. Docker

Easy Recommended
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker run -d agentbox

Runs the built image as an actual container.

docker run -d -e ENABLE_DOCKER=true agentbox

Runs the built image as an actual container.

docker run -d -e ENABLE_DOCKER=true -e ENABLE_SSH=true -p 22:22 agentbox

Runs the built image as an actual container.

docker run -d -e ENABLE_DOCKER=true -e ENABLE_SSH=true -e ENABLE_RDP=true -p 22:22 -p 3389:3389 agentbox:gui

Runs the built image as an actual container.

docker compose up -d

Builds and starts all defined containers (server, database, etc.) at once, in the background.

โœ… Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.

Pulled directly from this repo's README.

3. Make

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make init-workspace

Compiles the code based on the generated build configuration to produce an executable.

make up

Compiles the code based on the generated build configuration to produce an executable.

make enter-toad # or: make enter-copilot

Compiles the code based on the generated build configuration to produce an executable.

make down

Compiles the code based on the generated build configuration to produce an executable.

make -C ~ toad

Compiles the code based on the generated build configuration to produce an executable.

โœ… If it finishes without errors, it worked. Try running the generated executable directly.

Pulled directly from this repo's README.

// repository documentation