From 1f19d5c9456216f72884ec2ed72a25100abbf6a3 Mon Sep 17 00:00:00 2001 From: Roger Gonzalez Date: Fri, 6 Jan 2023 21:45:51 -0300 Subject: Fixed environment errors in the docker-compose file --- docker-compose.example.yaml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/docker-compose.example.yaml b/docker-compose.example.yaml index 70fa2b1..53a71e5 100644 --- a/docker-compose.example.yaml +++ b/docker-compose.example.yaml @@ -6,8 +6,8 @@ services: image: ghcr.io/linuxserver/emby container_name: emby environment: - - PUID: - - PGID: + - PUID= + - PGID= volumes: - /movies:/data/tvshows # change me! - /tvshows:/data/movies # change me! @@ -20,9 +20,9 @@ services: image: ghcr.io/linuxserver/qbittorrent container_name: qbittorrent environment: - - PUID: - - PGID: - - WEB_UI_PORT: 8080 + - PUID= + - PGID= + - WEB_UI_PORT=8080 volumes: - /downloads:/downloads # change me! ports: @@ -37,8 +37,8 @@ services: image: ghcr.io/linuxserver/sonarr:preview container_name: sonarr environment: - - PUID: - - PGID: + - PUID= + - PGID= volumes: - /tvshows:/tv # change me! - /downloads:/downloads # change me! @@ -51,8 +51,8 @@ services: image: ghcr.io/linuxserver/radarr container_name: radarr environment: - - PUID: - - PGID: + - PUID= + - PGID= volumes: - /movies:/movies # change me! - /downloads:/downloads # change me! @@ -65,8 +65,8 @@ services: image: ghcr.io/linuxserver/bazarr container_name: bazarr environment: - - PUID: - - PGID: + - PUID= + - PGID= volumes: - /movies:/movies # change me! - /tvshows:/tv # change me! @@ -80,9 +80,9 @@ services: image: ghcr.io/linuxserver/jackett container_name: jackett environment: - - PUID: - - PGID: - - AUTO_UPDATE: "True" + - PUID= + - PGID= + - AUTO_UPDATE="True" volumes: - /blackhole:/downloads # change me! ports: -- cgit v1.2.3