fix(seedsync): exposed port and supported architectures
This commit is contained in:
parent
f905320180
commit
77af3d9ccb
|
@ -1,31 +1,33 @@
|
||||||
{
|
{
|
||||||
"name": "SeedSync",
|
"$schema": "../schema.json",
|
||||||
"available": true,
|
"name": "SeedSync",
|
||||||
"port": 8800,
|
"available": true,
|
||||||
"exposable": true,
|
"port": 8800,
|
||||||
"id": "seedsync",
|
"exposable": true,
|
||||||
"description": "SeedSync is a tool to sync the files on a remote Linux server (like your seedbox, for example). It uses LFTP to transfer files fast!",
|
"id": "seedsync",
|
||||||
"tipi_version": 1,
|
"description": "SeedSync is a tool to sync the files on a remote Linux server (like your seedbox, for example). It uses LFTP to transfer files fast!",
|
||||||
"version": "0.8.6",
|
"tipi_version": 1,
|
||||||
"categories": ["utilities"],
|
"version": "0.8.6",
|
||||||
"short_desc": "SeedSync is a tool to sync the files on a remote Linux server.",
|
"categories": ["utilities"],
|
||||||
"author": "Inderpreet Singh",
|
"short_desc": "SeedSync is a tool to sync the files on a remote Linux server.",
|
||||||
"source": "https://github.com/ipsingh06/seedsync",
|
"author": "Inderpreet Singh",
|
||||||
"website": "https://ipsingh06.github.io/seedsync/",
|
"source": "https://github.com/ipsingh06/seedsync",
|
||||||
"form_fields": [
|
"website": "https://ipsingh06.github.io/seedsync/",
|
||||||
{
|
"supported_architectures": ["amd64", "arm64"],
|
||||||
"type": "number",
|
"form_fields": [
|
||||||
"label": "UID",
|
{
|
||||||
"hint": "Ensure any volume directories on the host are owned by the same user you specify",
|
"type": "number",
|
||||||
"placeholder": "1000",
|
"label": "UID",
|
||||||
"env_variable": "SEEDSYNC_PUID"
|
"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",
|
"type": "number",
|
||||||
"placeholder": "1000",
|
"label": "GUID",
|
||||||
"env_variable": "SEEDSYNC_PGID"
|
"hint": "Ensure any volume directories on the host are owned by the same group you specify",
|
||||||
}
|
"placeholder": "1000",
|
||||||
]
|
"env_variable": "SEEDSYNC_PGID"
|
||||||
}
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
version: "3.9"
|
version: '3.9'
|
||||||
services:
|
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}"
|
user: '${SEEDSYNC_PUID:-1000}:${SEEDSYNC_PGID:-1000}'
|
||||||
environment:
|
environment:
|
||||||
- TZ=${TZ}
|
- TZ=${TZ}
|
||||||
volumes:
|
volumes:
|
||||||
|
@ -13,12 +13,12 @@ services:
|
||||||
- ${APP_PORT}:8800
|
- ${APP_PORT}:8800
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
networks:
|
networks:
|
||||||
- tipi_main_network
|
- tipi_main_network
|
||||||
labels:
|
labels:
|
||||||
# Main
|
# Main
|
||||||
traefik.enable: true
|
traefik.enable: true
|
||||||
traefik.http.middlewares.seedsync-web-redirect.redirectscheme.scheme: https
|
traefik.http.middlewares.seedsync-web-redirect.redirectscheme.scheme: https
|
||||||
traefik.http.services.seedsync.loadbalancer.server.port: 8080
|
traefik.http.services.seedsync.loadbalancer.server.port: 8800
|
||||||
# Web
|
# Web
|
||||||
traefik.http.routers.seedsync-insecure.rule: Host(`${APP_DOMAIN}`)
|
traefik.http.routers.seedsync-insecure.rule: Host(`${APP_DOMAIN}`)
|
||||||
traefik.http.routers.seedsync-insecure.entrypoints: web
|
traefik.http.routers.seedsync-insecure.entrypoints: web
|
||||||
|
@ -38,4 +38,4 @@ services:
|
||||||
traefik.http.routers.seedsync-local.rule: Host(`seedsync.${LOCAL_DOMAIN}`)
|
traefik.http.routers.seedsync-local.rule: Host(`seedsync.${LOCAL_DOMAIN}`)
|
||||||
traefik.http.routers.seedsync-local.entrypoints: websecure
|
traefik.http.routers.seedsync-local.entrypoints: websecure
|
||||||
traefik.http.routers.seedsync-local.service: seedsync
|
traefik.http.routers.seedsync-local.service: seedsync
|
||||||
traefik.http.routers.seedsync-local.tls: true
|
traefik.http.routers.seedsync-local.tls: true
|
||||||
|
|
Loading…
Reference in New Issue
Block a user