Last active
February 20, 2025 09:13
-
-
Save ktzsystems/605864aebae6a919ab0b963a185e656f to your computer and use it in GitHub Desktop.
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
alias dtail='docker logs -tf --tail='50' ' | |
alias dstop='docker stop `docker ps -aq`' | |
alias drm='docker rm `docker ps -aq`' | |
alias dcp='docker-compose -f ~/docker-compose.yml ' | |
alias dcporph='docker-compose -f ~/docker-compose.yml up -d --remove-orphans' | |
alias dprune='docker image prune' | |
alias dprunesys='docker system prune --all' |
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
--- | |
version: "2" | |
services: | |
smokeping: | |
image: lscr.io/linuxserver/smokeping | |
container_name: smokeping | |
volumes: | |
- /mnt/data/appdata/smokeping/config:/config | |
- /mnt/data/appdata/smokeping/data:/data | |
labels: | |
- traefik.http.routers.smokeping.rule=Host(`smokeping.domain.com`) | |
- traefik.http.routers.smokeping.tls.certresolver=cloudflare | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- TZ=America/New_York | |
hostname: zoidberg | |
restart: unless-stopped |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment