Files
plextraktsync-docker/docker-entrypoint.sh
2023-09-07 09:41:28 +00:00

10 lines
242 B
Bash

#!/bin/bash
# set profile things
echo 'export PATH=$PATH:/root/.local/bin' >> /root/.profile
echo 'export HOMEFOLDER=/software' >> /root/.profile
source ~/.profile
# dont shutdown
while true; do /software/plextraktsync.sh; sleep 1200; done