#41 Deprecate Uptime-kuma

This commit is contained in:
Joey Hafner 2022-07-17 13:45:00 -07:00
parent e16c51555f
commit 37821b783e
5 changed files with 1 additions and 1 deletions

View File

@ -80,5 +80,5 @@ STACKS_RESTARTED=0 && for app in ~/homelab/server/config/*; do echo "===== RECRE
### Recreate based on list of containers
```bash
STACKS_RESTARTED=0 && for app in calibre-web uptime-kuma homer jdownloader2 librespeed monitoring navidrome qbittorrent send stashapp traefik; do echo "===== RECREATING $app =====" && cd ~/homelab/server/config/$app && docker-compose up -d && STACKS_RESTARTED=$(($STACKS_RESTARTED + 1)); done && echo "===== DONE (restarted $STACKS_RESTARTED stacks) =====" && cd ~
STACKS_RESTARTED=0 && for app in calibre-web homer jdownloader2 librespeed monitoring navidrome qbittorrent send stashapp traefik; do echo "===== RECREATING $app =====" && cd ~/homelab/server/config/$app && docker-compose up -d && STACKS_RESTARTED=$(($STACKS_RESTARTED + 1)); done && echo "===== DONE (restarted $STACKS_RESTARTED stacks) =====" && cd ~
```