Files
plextraktsync-docker/docker-entrypoint.sh
2023-09-07 09:23:34 +00:00

10 lines
243 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 86400; done