Skip to content

Commit 3a92c7e

Browse files
authored
feat: add new service Cinebye (#80)
* feat(addon-manager): upgrade to 0xConstant1 fork with enhanced features Updated stremio-addon-manager to use the 0xConstant1/stremio-addon-manager fork which includes significant improvements over the original Viren070 version: - Added ability to disable Cinemeta addon - Backup and restore configuration functionality - Reset Cinemeta to default settings - Uses new Docker image: d1nn/stremio-addon-manager:main This provides better addon management capabilities for Stremio users. * Add Cinebye as a seperate service instead of replacing addon-manager * reorder * reorder Re-add CINEBYE_HOSTNAME to the .env file. * reorder
1 parent 618c623 commit 3a92c7e

5 files changed

Lines changed: 26 additions & 0 deletions

File tree

.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ BAZARR_HOSTNAME=bazarr.${DOMAIN}
131131
BAZARR4K_HOSTNAME=4k.bazarr.${DOMAIN}
132132
BESZEL_HOSTNAME=beszel.${DOMAIN}
133133
BITMAGNET_HOSTNAME=bitmagnet.${DOMAIN}
134+
CINEBYE_HOSTNAME=cinebye.${DOMAIN?}
134135
COMET_HOSTNAME=comet.${DOMAIN}
135136
DASHDOT_HOSTNAME=dash.${DOMAIN}
136137
DEBRIDAV_HOSTNAME=debridav.${DOMAIN}

apps/cinebye/compose.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
services:
2+
cinebye:
3+
image: d1nn/stremio-addon-manager:main
4+
container_name: cinebye
5+
restart: unless-stopped
6+
expose:
7+
- 80
8+
labels:
9+
- "traefik.enable=true"
10+
- "traefik.http.routers.cinebye.rule=Host(`${CINEBYE_HOSTNAME?}`)"
11+
- "traefik.http.routers.cinebye.entrypoints=websecure"
12+
- "traefik.http.routers.cinebye.tls.certresolver=letsencrypt"
13+
- "traefik.http.routers.cinebye.middlewares=authelia@docker"
14+
profiles:
15+
- cinebye
16+
- stremio
17+
- all

apps/cloudflare-ddns/compose.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ services:
3030
${BAZARR4K_HOSTNAME},
3131
${BESZEL_HOSTNAME},
3232
${BITMAGNET_HOSTNAME},
33+
${CINEBYE_HOSTNAME},
3334
${COMET_HOSTNAME},
3435
${DASHDOT_HOSTNAME},
3536
${DEBRIDAV_HOSTNAME},

apps/honey/config.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,12 @@
157157
"href": "https://addon-manager.yourdomain.com",
158158
"icon": "https://raw.githubusercontent.com/Viren070/stremio-addon-manager/refs/heads/main/public/logo.png"
159159
},
160+
{
161+
"name": "Cinebye",
162+
"desc": "Add-on manager for Stremio with backup/restore and Cinemeta controls.",
163+
"href": "https://cinebye.yourdomain.com",
164+
"icon": "https://raw.githubusercontent.com/0xConstant1/stremio-addon-manager/refs/heads/main/public/logo.png"
165+
},
160166
{
161167
"name": "Stremio Account Bootstrapper",
162168
"desc": "Stremio account bootstrapper.",

compose.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ include:
1818
- apps/bitmagnet/compose.yaml
1919
- apps/borgmatic/compose.yaml
2020
- apps/byparr/compose.yaml
21+
- apps/cinebye/compose.yaml
2122
- apps/cloudflare-ddns/compose.yaml
2223
- apps/comet/compose.yaml
2324
- apps/crowdsec/compose.yaml

0 commit comments

Comments
 (0)