@huber70
To make photoprism start on every (re)boot is relatively easy.
To make photoprism stop on shutdown can be done, but this is difficult. I just do it manually
docker stop photoprism_photoprism_1
To start photoprism at every (re)boot:
crontab -e
Add to bottom of file:
Code:
@reboot /bin/sleep 120 && /usr/bin/docker start photoprism_photoprism_1
This starts photoprism 2 minutes after a (re)boot to give all the startup processes time to finish.