Last active
November 29, 2021 08:43
-
-
Save falcorocks/0be74df540e52038f81e0015a9a3c904 to your computer and use it in GitHub Desktop.
install docuum as a daemon service on linux
This file contains 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
#!/bin/bash | |
echo \$PWD | |
echo $PWD | |
EOF | |
[Unit] | |
Description=Docuum | |
After=docker.service | |
Wants=docker.service | |
[Service] | |
Environment='THRESHOLD=20 GB' | |
ExecStart=/usr/local/bin/docuum --threshold ${THRESHOLD} | |
Restart=on-failure | |
[Install] | |
WantedBy=multi-user.target |
This file contains 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
#!/bin/bash | |
curl https://raw.githubusercontent.com/stepchowfun/docuum/main/install.sh -LSfs | sh | |
sudo cp docuum.service /etc/systemd/system/docuum.service | |
sudo systemctl enable docuum --now | |
echo "check logs with sudo journalctl --follow --unit docuum" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment