fix(seedsync): exposed port and supported architectures
This commit is contained in:
parent
f905320180
commit
77af3d9ccb
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"$schema": "../schema.json",
|
||||||
"name": "SeedSync",
|
"name": "SeedSync",
|
||||||
"available": true,
|
"available": true,
|
||||||
"port": 8800,
|
"port": 8800,
|
||||||
|
@ -12,6 +13,7 @@
|
||||||
"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/",
|
||||||
|
"supported_architectures": ["amd64", "arm64"],
|
||||||
"form_fields": [
|
"form_fields": [
|
||||||
{
|
{
|
||||||
"type": "number",
|
"type": "number",
|
||||||
|
@ -28,4 +30,4 @@
|
||||||
"env_variable": "SEEDSYNC_PGID"
|
"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:
|
||||||
|
@ -18,7 +18,7 @@ services:
|
||||||
# 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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user