feat: add aiolists

This commit is contained in:
Viren070
2025-07-08 21:42:20 +01:00
parent 76144d6a31
commit 71e6fd67f7
5 changed files with 28 additions and 0 deletions
+1
View File
@@ -114,6 +114,7 @@ CLOUDFLARE_API_TOKEN=
# These values are the subdomains that Traefik will use to route traffic to the services.
# You can modify these values to suit your needs, but ensure that they are unique and do not conflict with other services.
ADDON_MANAGER_HOSTNAME=addon-manager.${DOMAIN?}
AIOLISTS_HOSTNAME=aiolists.${DOMAIN?}
AIOSTREAMS_HOSTNAME=aiostreams.${DOMAIN}
AIOSTREMIO_HOSTNAME=aiostremio.${DOMAIN}
ANIME_KITSU_HOSTNAME=kitsu.${DOMAIN}
+4
View File
@@ -0,0 +1,4 @@
# Environment Configuration
TMDB_REDIRECT_URI=https://${AIOLISTS_HOSTNAME?}
# The value of the TMDB Read Access Token, obtain it from https://www.themoviedb.org/settings/api
TMDB_BEARER_TOKEN=
+21
View File
@@ -0,0 +1,21 @@
services:
aiolists:
build:
context: https://github.com/SebastianMorel/AIOLists.git
dockerfile: Dockerfile
container_name: aiolists
restart: unless-stopped
expose:
- 7000
env_file:
- .env
labels:
- "traefik.enable=true"
- "traefik.http.routers.aiolists.rule=Host(`${AIOLISTS_HOSTNAME?}`)"
- "traefik.http.routers.aiolists.entrypoints=websecure"
- "traefik.http.routers.aiolists.tls.certresolver=letsencrypt"
- "traefik.http.routers.aiolists.middlewares=authelia@docker"
profiles:
- aiolists
- stremio
- all
+1
View File
@@ -13,6 +13,7 @@ services:
PROXIED: false
DOMAINS: >
${ADDON_MANAGER_HOSTNAME},
${AIOLISTS_HOSTNAME},
${AIOSTREAMS_HOSTNAME},
${AIOSTREMIO_HOSTNAME},
${ANIME_KITSU_HOSTNAME},
+1
View File
@@ -2,6 +2,7 @@ include:
- apps/authelia/compose.yaml
- apps/addon-manager/compose.yaml
- apps/arcane/compose.yaml
- apps/aiolists/compose.yaml
- apps/aiostreams/compose.yaml
- apps/aiostremio/compose.yaml
- apps/anime-kitsu/compose.yaml