Created
June 7, 2021 13:30
-
-
Save dnburgess/cb23d3a22614a31df4878c880f9f8a14 to your computer and use it in GitHub Desktop.
DB Tech PhotoStructure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.7" | |
services: | |
photostructure: | |
image: photostructure/server | |
restart: always | |
stop_grace_period: 2m | |
user: 1000:1000 # < If you need a different user id, see below | |
volumes: | |
- /srv/dev-disk-by-label-Files/Files/PhotoStructure:/ps/library | |
- /srv/dev-disk-by-label-Files/Files/.cache/photostructure":/ps/tmp | |
- /srv/dev-disk-by-label-Files/Files/.config/PhotoStructure-docker":/ps/config | |
- /srv/dev-disk-by-label-Files/Files/.config/PhotoStructure/logs":/ps/logs | |
- /srv/dev-disk-by-label-Files/Files/PhotosBackup:/var/photos-backup | |
#- /home/jamie/Pictures:/var/home-jamie-pictures | |
ports: | |
- 1787:1787/tcp | |
environment: | |
# PhotoStructure has _tons_ of settings. See | |
# <https://photostructure.com/faq/environment-variables/> | |
# This tells PhotoStructure to only log errors, which is the default: | |
- "PS_LOG_LEVEL=error" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment