Mac
Installation
Verify Docker is installed correctly
docker run hello-world
Install the Edge
source <(curl -sS https://raw.githubusercontent.com/xyte-io/edge/refs/heads/main/edge_runner_script.sh)
Common errors
Error: telnet is not installed. Telnet is unable to be installed on newer Mac OS
Install Homebrew
# Install Homebrew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)
# Complete final Brew installation step (provided by installer)
echo >> /Users/[YOUR USER DIRECTORY]/.zprofile
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/[YOUR USER DIRECTORY]/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"
Install Telnet through Homebrew
# Install Telnet
brew install telnet
docker: permission denied while trying to connect to the Docker daemon
The current user doesn't have permission to run docker containers, either run the script as sudo
(not recommended) or allow user to run docker containers:
# Allow current user to run Docker without sudo
sudo usermod -aG docker $USER
newgrp docker
Updated 17 days ago