I’m running 4.6.1 on windows 10 build 19044.1620. i have data on a shared drive (t: on the host in this example). My issue is that the container only has read only access to the host’s data. I’ve tried a umask of 022. All my puid and pgid are the same. Perhaps that isn’t correct. I’m guessing its a permissions issue, but I’m relatively new to linux. Here’s the docker-compose:
---
version: "3.8"
services:
overseerr:
image: linuxserver/overseerr:latest
container_name: overseerr
restart: unless-stopped
environment:
- TZ=America/New_York # Specify a timezone to use
- PUID=1000 # User ID to run as
- PGID=1000 # Group ID to run as
- UMASK=022
volumes:
- c:\pvr\overseerr_config:/config # Contains all relevant configuration files.
ports:
- 5055:5055 # Web UI
prowlarr:
image: linuxserver/prowlarr:0.2.0-nightly
container_name: prowlarr
restart: unless-stopped
environment:
- TZ=America/New_York # Specify a timezone to use
- PUID=1000 # User ID to run as
- PGID=1000 # Group ID to run as
- UMASK=022
volumes:
- c:\pvr\prowlarr_config:/config # Contains all relevant configuration files.
ports:
- 9696:9696 # Web UI
sonarr:
image: linuxserver/sonarr:latest
container_name: sonarr
restart: unless-stopped
environment:
- TZ=America/New_York # Specify a timezone to use
- PUID=1000 # User ID to run as
- PGID=1000 # Group ID to run as
- UMASK=022
volumes:
- t:\:/data # Location of all your media
- c:\pvr\sonarr_config:/config # Contains all relevant configuration files.
ports:
- 8989:8989 # Web UI
bazarr:
image: linuxserver/bazarr:latest
container_name: bazarr
restart: unless-stopped
environment:
- TZ=America/New_York # Specify a timezone to use
- PUID=1000 # User ID to run as
- PGID=1000 # Group ID to run as
- UMASK=022
volumes:
- c:\pvr\bazarr_config:/config # Bazarr data
ports:
- 6767:6767/tcp # Allows HTTP access to the internal webserver.
radarr:
image: linuxserver/radarr:latest
container_name: radarr
restart: unless-stopped
environment:
- TZ=America/New_York # Specify a timezone to use
- PUID=1000 # for UserID
- PGID=1000 # for GroupID
- UMASK=022
volumes:
- c:\pvr\radarr_config:/config # Database and Radarr configs
ports:
- 7878:7878/tcp # The port for the Radarr webinterface
tautulli:
image: tautulli/tautulli:latest
container_name: tautulli
restart: unless-stopped
environment:
- TZ=America/New_York # Specify a timezone to use
- PUID=1000 # User ID to run as
- PGID=1000 # Group ID to run as
- UMASK=022
volumes:
- c:\pvr\tautulli_config:/config # Contains all relevant configuration files.
ports:
- 8181:8181 # Web UI
qbittorrent:
image: linuxserver/qbittorrent:latest
container_name: qbittorrent
restart: unless-stopped
environment:
- TZ=America/New_York # Specify a timezone to use
- PUID=1000 # User ID to run as
- PGID=1000 # Group ID to run as
- UMASK=022
volumes:
- c:\pvr\qbittorrent_config:/config # configs
ports:
- 8080:8080
- 6881:6881
- 6881:6881/udp