mirror of
https://github.com/kiranshila/Doplarr.git
synced 2026-07-30 17:16:08 -04:00
934 B
934 B
Doplarr
A Better Sonarr/Radarr Request Bot for Discord
Running with Docker
Pull the latest image with docker pull ghcr.io/kiranshila/doplarr:main
Then run with fixme
Building and Running Locally
You need the Clojure CLI tools to build
- Clone directory
clj -T:build uberjar
Configuring
- Fill out
config.ednwith the requisite things
Setting up as a service (On Linux (Systemd))
- Create the file /etc/systemd/system/doplarr.service with the following
[Unit]
Description=Doplarr Daemon
After=syslog.target network.target
[Service]
User=root
Group=root
Type=simple
WorkingDirectory=/opt/Doplarr
ExecStart=/usr/bin/java -jar
TimeoutStopSec=20
KillMode=process
Restart=always
[Install]
WantedBy=multi-user.target
- Customize the user, group, and working directory to the location of the jar
Then, as root
systemctl -q daemon-reloadsystemctl enable --now -q doplarr