diff options
author | Roger Gonzalez <roger@rogs.me> | 2023-01-06 21:45:51 -0300 |
---|---|---|
committer | Roger Gonzalez <roger@rogs.me> | 2023-01-06 21:45:51 -0300 |
commit | 1f19d5c9456216f72884ec2ed72a25100abbf6a3 (patch) | |
tree | 01840776d4fbb1685c95972a901cc86f91d96bad /docker-compose.example.yaml | |
parent | 119dfa343029ae950dbbfc97d8670072a6a3c83a (diff) |
Fixed environment errors in the docker-compose file
Diffstat (limited to 'docker-compose.example.yaml')
-rw-r--r-- | docker-compose.example.yaml | 28 |
1 files 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: <your_PUID> - - PGID: <your_PGID> + - PUID=<your_PUID> + - PGID=<your_PGID> volumes: - <entertainment_folder>/movies:/data/tvshows # change me! - <entertainment_folder>/tvshows:/data/movies # change me! @@ -20,9 +20,9 @@ services: image: ghcr.io/linuxserver/qbittorrent container_name: qbittorrent environment: - - PUID: <your_PUID> - - PGID: <your_PGID> - - WEB_UI_PORT: 8080 + - PUID=<your_PUID> + - PGID=<your_PGID> + - WEB_UI_PORT=8080 volumes: - <entertainment_folder>/downloads:/downloads # change me! ports: @@ -37,8 +37,8 @@ services: image: ghcr.io/linuxserver/sonarr:preview container_name: sonarr environment: - - PUID: <your_PUID> - - PGID: <your_PGID> + - PUID=<your_PUID> + - PGID=<your_PGID> volumes: - <entertainment_folder>/tvshows:/tv # change me! - <entertainment_folder>/downloads:/downloads # change me! @@ -51,8 +51,8 @@ services: image: ghcr.io/linuxserver/radarr container_name: radarr environment: - - PUID: <your_PUID> - - PGID: <your_PGID> + - PUID=<your_PUID> + - PGID=<your_PGID> volumes: - <entertainment_folder>/movies:/movies # change me! - <entertainment_folder>/downloads:/downloads # change me! @@ -65,8 +65,8 @@ services: image: ghcr.io/linuxserver/bazarr container_name: bazarr environment: - - PUID: <your_PUID> - - PGID: <your_PGID> + - PUID=<your_PUID> + - PGID=<your_PGID> volumes: - <entertainment_folder>/movies:/movies # change me! - <entertainment_folder>/tvshows:/tv # change me! @@ -80,9 +80,9 @@ services: image: ghcr.io/linuxserver/jackett container_name: jackett environment: - - PUID: <your_PUID> - - PGID: <your_PGID> - - AUTO_UPDATE: "True" + - PUID=<your_PUID> + - PGID=<your_PGID> + - AUTO_UPDATE="True" volumes: - <entertainment_folder>/blackhole:/downloads # change me! ports: |