add seedsync to apps
This commit is contained in:
parent
f43c594bc6
commit
7a6fda7c0f
|
@ -12,5 +12,20 @@
|
|||
"author": "Inderpreet Singh",
|
||||
"source": "https://github.com/ipsingh06/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"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -3,6 +3,7 @@ services:
|
|||
seedsync:
|
||||
container_name: seedsync
|
||||
image: ipsingh06/seedsync:0.8.6
|
||||
user: "${SEEDSYNC_PUID}:${SEEDSYNC_PGID}"
|
||||
environment:
|
||||
- TZ=${TZ}
|
||||
volumes:
|
||||
|
@ -12,7 +13,7 @@ services:
|
|||
- ${APP_PORT}:8800
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- tipi_main_network
|
||||
- tipi_main_network
|
||||
labels:
|
||||
# Main
|
||||
traefik.enable: true
|
||||
|
|
Loading…
Reference in New Issue
Block a user