Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »


install container

1a- Install docker on linux
pull the containersudo docker pull linuxserver/smokeping
just run ( docker cli )
docker run
sudo docker run -d \
--name=smokeping \
-e PUID=1000 \
-e PGID=1000 \
-p 8080:80 \
-v /path/to/config:/config \
--restart unless-stopped \
linuxserver/smokeping



create a docker-compose

https://hub.docker.com/r/linuxserver/smokeping

docker-compose
---
services:
smokeping:
image: lscr.io/linuxserver/smokeping:latest
container_name: smokeping
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- MASTER_URL=http://<master-host-ip>:80/smokeping/ #optional
- SHARED_SECRET=password #optional
- CACHE_DIR=/tmp #optional
volumes:
- /path/to/smokeping/config:/config
- /path/to/smokeping/data:/data
ports:
- 8080:80
restart: unless-stopped



  • No labels