Last active
January 3, 2026 18:38
-
-
Save jimaek/7b8312c2c37f9002a5cc0108ebfd43e1 to your computer and use it in GitHub Desktop.
Install Globalping probe on a fresh server - automated script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl -fsSL https://get.docker.com -o get-docker.sh || wget https://get.docker.com -O get-docker.sh | |
| sh get-docker.sh | |
| systemctl start docker | |
| systemctl enable docker | |
| docker pull ghcr.io/jsdelivr/globalping-probe | |
| docker stop globalping-probe | |
| docker rm globalping-probe | |
| # It is recommended to register at dash.globalping.io and get your adoption token | |
| # | |
| # docker run -d -e GP_ADOPTION_TOKEN=XXX --log-driver local --network host --restart=always --name globalping-probe globalping/globalping-probe | |
| #The default command will not adopt the probe under your account and you won't recieve any credits | |
| docker run -d --log-driver local --network host --restart=always --name globalping-probe globalping/globalping-probe | |
| docker ps | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment