mirror of
https://github.com/Viren070/docker-compose-template.git
synced 2025-12-01 23:17:00 +01:00
feat: rename ai-search to stremio-ai-search and add missing include in root compose
This commit is contained in:
@@ -115,7 +115,6 @@ CLOUDFLARE_API_TOKEN=
|
||||
# You can modify these values to suit your needs, but ensure that they are unique and do not conflict with other services.
|
||||
ACTUAL_BUDGET_HOSTNAME=actual-budget.${DOMAIN?}
|
||||
ADDON_MANAGER_HOSTNAME=addon-manager.${DOMAIN?}
|
||||
AI_SEARCH_HOSTNAME=ai-search.${DOMAIN?}
|
||||
AIOLISTS_HOSTNAME=aiolists.${DOMAIN?}
|
||||
AIOSTREAMS_HOSTNAME=aiostreams.${DOMAIN}
|
||||
AIOSTREMIO_HOSTNAME=aiostremio.${DOMAIN}
|
||||
@@ -169,6 +168,7 @@ SONARRANIME_HOSTNAME=anime.sonarr.${DOMAIN}
|
||||
SPEEDTEST_TRACKER_HOSTNAME=speedtest-tracker.${DOMAIN}
|
||||
STREAMYSTATS_HOSTNAME=streamystats.${DOMAIN}
|
||||
STREMIO_ACCOUNT_BOOTSTRAPPER_HOSTNAME=stremio-account-bootstrapper.${DOMAIN?}
|
||||
STREMIO_AI_SEARCH_HOSTNAME=ai-search.${DOMAIN?}
|
||||
STREMIO_CATALOG_PROVIDERS_HOSTNAME=stremio-catalogues.${DOMAIN}
|
||||
STREMIO_JACKETT_HOSTNAME=stremio-jackett.${DOMAIN}
|
||||
STREMIO_LETTERBOXD_HOSTNAME=stremio-letterboxd.${DOMAIN}
|
||||
|
||||
@@ -1,26 +0,0 @@
|
||||
services:
|
||||
ai-search:
|
||||
image: ghcr.io/cedya77/stremio-ai-search:latest
|
||||
build:
|
||||
context: https://github.com/itcon-pty-au/stremio-ai-search.git
|
||||
dockerfile: Dockerfile
|
||||
container_name: ai-search
|
||||
restart: unless-stopped
|
||||
env_file:
|
||||
- .env
|
||||
environment:
|
||||
PORT: 7000 # needed when using community image
|
||||
expose:
|
||||
- 7000
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
- "traefik.http.routers.ai-search.rule=Host(`${AI_SEARCH_HOSTNAME}`)"
|
||||
- "traefik.http.routers.ai-search.entrypoints=websecure"
|
||||
- "traefik.http.routers.ai-search.tls.certresolver=letsencrypt"
|
||||
- "traefik.http.routers.ai-search.middlewares=authelia@docker"
|
||||
- "traefik.http.services.ai-search.loadbalancer.server.port=7000"
|
||||
|
||||
profiles:
|
||||
- ai-search
|
||||
- stremio
|
||||
- all
|
||||
@@ -14,7 +14,6 @@ services:
|
||||
DOMAINS: >
|
||||
${ACTUAL_BUDGET_HOSTNAME},
|
||||
${ADDON_MANAGER_HOSTNAME},
|
||||
${AI_SEARCH_HOSTNAME},
|
||||
${AIOLISTS_HOSTNAME},
|
||||
${AIOSTREAMS_HOSTNAME},
|
||||
${AIOSTREMIO_HOSTNAME},
|
||||
@@ -68,6 +67,7 @@ services:
|
||||
${SPEEDTEST_TRACKER_HOSTNAME},
|
||||
${STREAMYSTATS_HOSTNAME},
|
||||
${STREMIO_ACCOUNT_BOOTSTRAPPER_HOSTNAME},
|
||||
${STREMIO_AI_SEARCH_HOSTNAME},
|
||||
${STREMIO_CATALOG_PROVIDERS_HOSTNAME},
|
||||
${STREMIO_JACKETT_HOSTNAME},
|
||||
${STREMIO_LETTERBOXD_HOSTNAME},
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
services:
|
||||
stremio-ai-search:
|
||||
image: ghcr.io/cedya77/stremio-ai-search:latest
|
||||
build:
|
||||
context: https://github.com/itcon-pty-au/stremio-ai-search.git
|
||||
dockerfile: Dockerfile
|
||||
container_name: stremio-ai-search
|
||||
restart: unless-stopped
|
||||
env_file:
|
||||
- .env
|
||||
environment:
|
||||
PORT: 7000 # needed when using community image
|
||||
expose:
|
||||
- 7000
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
- "traefik.http.routers.stremio-ai-search.rule=Host(`${AI_SEARCH_HOSTNAME}`)"
|
||||
- "traefik.http.routers.stremio-ai-search.entrypoints=websecure"
|
||||
- "traefik.http.routers.stremio-ai-search.tls.certresolver=letsencrypt"
|
||||
- "traefik.http.routers.stremio-ai-search.middlewares=authelia@docker"
|
||||
- "traefik.http.services.stremio-ai-search.loadbalancer.server.port=7000"
|
||||
profiles:
|
||||
- stremio-ai-search
|
||||
- stremio
|
||||
- all
|
||||
@@ -57,6 +57,7 @@ include:
|
||||
- apps/sshbot/compose.yaml
|
||||
- apps/streamystats/compose.yaml
|
||||
- apps/stremio-account-bootstrapper/compose.yaml
|
||||
- apps/stremio-ai-search/compose.yaml
|
||||
- apps/stremio-catalog-providers/compose.yaml
|
||||
- apps/stremio-jackett/compose.yaml
|
||||
- apps/stremio-letterboxd/compose.yaml
|
||||
|
||||
Reference in New Issue
Block a user