Dashboard

0

Successful Executions

0

Failed Executions

0

Active Machines

0

Last 24h Executions

0

Running Now

Execution History

No executions found

Initializing machine connectivity checks...
Disconnected
Ensure Python is installed in selected machine
Python Installation Guide
Ubuntu/Debian
sudo apt update && sudo apt install python3 python3-pip
CentOS/RHEL/Fedora
sudo yum install python3 python3-pip
# Or: sudo dnf install python3 python3-pip
Alpine Linux
apk add python3 py3-pip
Arch Linux
sudo pacman -S python python-pip

Python Environment Overview

Select a machine to view Python environment information

`

Drag & drop Python files here or click to browse

Project Directory Management

script.py
Ensure Ansible is installed in selected machine
Ansible Installation Guide
Ubuntu/Debian
sudo apt update
sudo apt install ansible
# Or via pip: pip3 install ansible
CentOS/RHEL
sudo yum install epel-release
sudo yum install ansible
Fedora
sudo dnf install ansible
macOS
brew install ansible
# Or: pip3 install ansible

Ansible Environment Overview

Select a machine to view Ansible environment information

ELEVATED
Commands will run with root privileges

Drag & drop Ansible playbooks here or click to browse

ELEVATED
Playbook will run with root privileges

Project Directory Management

playbook.yml
ELEVATED
Playbook will run with root privileges
Ensure Terraform is installed in selected machine
Terraform Installation Guide
Ubuntu/Debian
wget -O- https://apt.releases.hashicorp.com/gpg | sudo gpg --dearmor -o /usr/share/keyrings/hashicorp-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/hashicorp.list
sudo apt update && sudo apt install terraform
CentOS/RHEL/Fedora
sudo yum install -y yum-utils
sudo yum-config-manager --add-repo https://rpm.releases.hashicorp.com/RHEL/hashicorp.repo
sudo yum install terraform
Manual Installation
wget https://releases.hashicorp.com/terraform/1.6.0/terraform_1.6.0_linux_amd64.zip
unzip terraform_*.zip && sudo mv terraform /usr/local/bin/

Terraform Environment Overview

Select a machine to view Terraform environment information

Drag & drop Terraform files here or click to browse

Project Directory Management

main.tf
Terraform runs locally on dashboard host: InitPlanApply
Ensure Docker is installed with full permissions in selected machine
Docker Installation & Permissions Guide
Ubuntu/Debian
sudo apt update
sudo apt install docker.io docker-compose
sudo systemctl enable --now docker
sudo usermod -aG docker $USER
# Logout and login again
CentOS/RHEL
sudo yum install -y docker docker-compose
sudo systemctl enable --now docker
sudo usermod -aG docker $USER
Fedora
sudo dnf install docker docker-compose
sudo systemctl enable --now docker
sudo usermod -aG docker $USER
Verify Installation
docker --version && docker-compose --version
docker run hello-world

Docker System Information

Select a machine to view Docker information

Images -
Containers -
Running -
Networks -
Volumes -

Docker Images

Select a machine to view Docker images

Docker Containers

Select a machine to view Docker containers

Docker Networks

Select a machine to view Docker networks

Docker Volumes

Select a machine to view Docker volumes

Docker Project Directory Management

docker-compose.yml
Pull Image
Run Container
Choose from available images
Execute Command in Container
Choose a running container to execute commands in
Container Statistics
Choose a container to view statistics
Docker Compose
System Cleanup
Warning: This will permanently remove unused Docker data!