Last active
February 18, 2024 02:09
-
-
Save jimaek/7b8312c2c37f9002a5cc0108ebfd43e1 to your computer and use it in GitHub Desktop.
Install Globalping probe on a fresh server - automated script
This file contains 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 | |
docker run -d --log-driver local --network host --restart=always --name globalping-probe ghcr.io/jsdelivr/globalping-probe | |
docker ps | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment