mirror of
https://github.com/Viren070/docker-compose-template.git
synced 2025-12-01 23:17:00 +01:00
feat: add quetre
This commit is contained in:
@@ -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}
|
||||
|
||||
@@ -55,6 +55,7 @@ services:
|
||||
${PLEX_HOSTNAME},
|
||||
${PORTAINER_HOSTNAME},
|
||||
${PROWLARR_HOSTNAME},
|
||||
${QUETRE_HOSTNAME},
|
||||
${RADARR_HOSTNAME},
|
||||
${RADARR4K_HOSTNAME},
|
||||
${RADARRANIME_HOSTNAME},
|
||||
|
||||
@@ -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
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user