51 lines
1.7 KiB
Markdown
51 lines
1.7 KiB
Markdown
---
|
|
title: sa6anw.se
|
|
---
|
|
|
|
<div class="ascii-wrapper">
|
|
<pre><code><div align="center">
|
|
______ __ __ ______ __ __ ________ _______ ______ __ __ ______
|
|
/\ ____\ |\_\ /\_\ /\ ____\ |\_\ /\_\ |\ ______\ |\ _____\ |\ ____\ |\_\ |\_\ /\ ____\
|
|
|\ ######\ | ##\ / ## |\ ######\ | ## / ## | ######## | #######\ \###### | ##\ | ## |\ ######\
|
|
| ##___\## | ###\ / ### | ## | ## | ##/ ## | ##__ | ##__/ ## | ## | ###\| ## | ## __\##
|
|
\## ___\ | ####\ #### | ## | ## | ## ## | ## _\ | ## _\ ## | ## | ####\ ## | ##|\ __\
|
|
_\######\ | ##\## ## ## | ## | ## | #####\ | ##### | ####### | ## | ##\## ## | ## \####
|
|
|\_\__| ## | ## \###| ## | ##__/\## | ## \##\ | ##_____ | ## _| ##_ | ## \#### | ##__| ##
|
|
\## __\## | ## \# | ## \## _\ ## | ## \##\ | ## ____\ | ## |\_\##_\ | ## \### \## __\##
|
|
\###### \## \## \###### \## \## \######## \## \###### \## \## \######
|
|
|
|
SA6ANW 20240105
|
|
</div></code></pre>
|
|
</div>
|
|
|
|
**[smokeping.sa6anw.se](https://smokeping.sa6anw.se)**
|
|
|
|
För att köra smokeping i ditt egna labb:
|
|
|
|
- Skapa en `docker-compose.yaml` med följande innehåll
|
|
|
|
```
|
|
---
|
|
services:
|
|
smokeping:
|
|
image: lscr.io/linuxserver/smokeping:latest
|
|
container_name: smokeping
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Etc/UTC
|
|
- MASTER_URL=https://smokeping.sa6anw.se
|
|
- CACHE_DIR=/tmp
|
|
volumes:
|
|
- ./config:/config
|
|
- ./data:/data
|
|
ports:
|
|
- 8002:80
|
|
restart: unless-stopped
|
|
|
|
```
|
|
|
|
- Byt till din domän.
|
|
- Sen är det bara att köra `docker compose up -d`
|
|
|