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", "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"
} }
] ]
} }

View File

@ -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