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 6 Current »


install container

1a- Install docker on linux
pull the containersudo docker pull linuxserver/smokeping

create a directory to put the configuration

mkdir smokeping  (/home/kali/smokeping/) 

just run ( docker cli )
docker run
sudo docker run -d \
--name=smokeping \
-e PUID=1000 \
-e PGID=1000 \
-p 8080:80 \
-v /home/kali/smokeping/config:/config \
--restart unless-stopped \
linuxserver/smokeping



create a docker-compose
install docker-compose


apt install docker-compose


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

mkdir /home/kali/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:
      - /home/kali/smokeping/config:/config
      - /home/kali/smokeping/data:/data
    ports:
      - 8080:80
    restart: unless-stopped


docker-compose up

docker-compose down


  • No labels