fix(seedsync): exposed port and supported architectures

This commit is contained in:
Nicolas Meienberger 2024-01-07 15:05:07 +01:00
parent f905320180
commit 77af3d9ccb
2 changed files with 38 additions and 36 deletions

View File

@ -1,4 +1,5 @@
{
"$schema": "../schema.json",
"name": "SeedSync",
"available": true,
"port": 8800,
@ -12,6 +13,7 @@
"author": "Inderpreet Singh",
"source": "https://github.com/ipsingh06/seedsync",
"website": "https://ipsingh06.github.io/seedsync/",
"supported_architectures": ["amd64", "arm64"],
"form_fields": [
{
"type": "number",
@ -28,4 +30,4 @@
"env_variable": "SEEDSYNC_PGID"
}
]
}
}

View File

@ -1,9 +1,9 @@
version: "3.9"
version: '3.9'
services:
seedsync:
container_name: seedsync
image: ipsingh06/seedsync:0.8.6
user: "${SEEDSYNC_PUID}:${SEEDSYNC_PGID}"
user: '${SEEDSYNC_PUID:-1000}:${SEEDSYNC_PGID:-1000}'
environment:
- TZ=${TZ}
volumes:
@ -18,7 +18,7 @@ services:
# Main
traefik.enable: true
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
traefik.http.routers.seedsync-insecure.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.seedsync-insecure.entrypoints: web