add seedsync to apps

This commit is contained in:
DansNewLegs 2024-01-05 09:55:52 -05:00
parent f43c594bc6
commit 7a6fda7c0f
2 changed files with 18 additions and 2 deletions

View File

@ -12,5 +12,20 @@
"author": "Inderpreet Singh", "author": "Inderpreet Singh",
"source": "https://github.com/ipsingh06/seedsync", "source": "https://github.com/ipsingh06/seedsync",
"website": "https://ipsingh06.github.io/seedsync/", "website": "https://ipsingh06.github.io/seedsync/",
"form_fields": [] "form_fields": [
{
"type": "number",
"label": "UID",
"hint": "Ensure any volume directories on the host are owned by the same user you specify",
"placeholder": "1000",
"env_variable": "SEEDSYNC_PUID"
},
{
"type": "number",
"label": "GUID",
"hint": "Ensure any volume directories on the host are owned by the same group you specify",
"placeholder": "1000",
"env_variable": "SEEDSYNC_PGID"
}
]
} }

View File

@ -3,6 +3,7 @@ services:
seedsync: seedsync:
container_name: seedsync container_name: seedsync
image: ipsingh06/seedsync:0.8.6 image: ipsingh06/seedsync:0.8.6
user: "${SEEDSYNC_PUID}:${SEEDSYNC_PGID}"
environment: environment:
- TZ=${TZ} - TZ=${TZ}
volumes: volumes: