Skip to content

Instantly share code, notes, and snippets.

@falcorocks
Last active November 29, 2021 08:43
Show Gist options
  • Save falcorocks/0be74df540e52038f81e0015a9a3c904 to your computer and use it in GitHub Desktop.
Save falcorocks/0be74df540e52038f81e0015a9a3c904 to your computer and use it in GitHub Desktop.
install docuum as a daemon service on linux
#!/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
#!/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