From 8783a5f64959fcc8cc18ead6347031cb93b07388 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Marseault?= <22910497+Larsluph@users.noreply.github.com> Date: Sun, 5 May 2024 11:41:05 +0200 Subject: [PATCH] chore(backend): Add missing QBIT_BASE env to docker-compose (#1676) --- docker-compose.yml | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index ebd0789846..9f10632c0d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,4 +1,3 @@ -version: '3.8' services: qbit: image: linuxserver/qbittorrent:latest @@ -17,11 +16,14 @@ services: - '8080:8080' restart: unless-stopped - backend: - image: ghcr.io/vuetorrent/vuetorrent-backend:latest - container_name: vuetorrent-backend - restart: unless-stopped - ports: - - '8081:3000' - volumes: - - ./docker/backend:/app/data +# Backend is optional, see the repo for more information +# backend: +# image: ghcr.io/vuetorrent/vuetorrent-backend:latest +# container_name: vuetorrent-backend +# restart: unless-stopped +# environment: +# - "QBIT_BASE=http://internal.host.docker:8080/" +# ports: +# - '8081:3000' +# volumes: +# - ./docker/backend:/app/data