feat: add quetre

This commit is contained in:
Viren070
2025-07-13 16:01:35 +01:00
parent 84996ab2f6
commit 4cbb55a192
4 changed files with 30 additions and 0 deletions
+1
View File
@@ -156,6 +156,7 @@ PLAUSIBLE_HOSTNAME=plausible.${DOMAIN}
PLEX_HOSTNAME=plex.${DOMAIN}
PORTAINER_HOSTNAME=portainer.${DOMAIN}
PROWLARR_HOSTNAME=prowlarr.${DOMAIN}
QUETRE_HOSTNAME=quetre.${DOMAIN}
RADARR_HOSTNAME=radarr.${DOMAIN}
RADARR4K_HOSTNAME=4k.radarr.${DOMAIN}
RADARRANIME_HOSTNAME=anime.radarr.${DOMAIN}
+1
View File
@@ -55,6 +55,7 @@ services:
${PLEX_HOSTNAME},
${PORTAINER_HOSTNAME},
${PROWLARR_HOSTNAME},
${QUETRE_HOSTNAME},
${RADARR_HOSTNAME},
${RADARR4K_HOSTNAME},
${RADARRANIME_HOSTNAME},
+27
View File
@@ -0,0 +1,27 @@
services:
quetre:
build:
context: https://github.com/zyachel/quetre.git
dockerfile_inline: |
FROM node:alpine3.17
WORKDIR /app
COPY . .
ENV NODE_ENV=production
RUN npm install -g pnpm && pnpm install
EXPOSE 3000
CMD ["pnpm", "start"]
image: quetre
container_name: quetre
restart: unless-stopped
expose:
- 3000
labels:
- "traefik.enable=true"
- "traefik.http.routers.quetre.rule=Host(`${QUETRE_HOSTNAME?}`)"
- "traefik.http.routers.quetre.entrypoints=websecure"
- "traefik.http.routers.quetre.tls.certresolver=letsencrypt"
- "traefik.http.routers.quetre.middlewares=authelia@docker"
- "traefik.http.services.quetre.loadbalancer.server.port=3000"
profiles:
- quetre
- all
+1
View File
@@ -45,6 +45,7 @@ include:
- apps/plex-trakt-sync/compose.yaml
- apps/portainer/compose.yaml
- apps/prowlarr/compose.yaml
- apps/quetre/compose.yaml
- apps/radarr/compose.yaml
- apps/redlib/compose.yaml
- apps/realdebrid-account-monitor/compose.yaml