Cannot get mylar3 to start

I’m building a docker-compose file to create/start sabnzbd, sonarr and mylar3.

sabnzbd and sonarr start up just fine. mylar refuses to start.

Here is my docker-compose file:

---
version: "3.0"
services:
  sabnzbd:
    hostname: sabnzbd
    image: lscr.io/linuxserver/sabnzbd:latest
    container_name: sabnzbd
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=America/New_York
    volumes:
      - /home/andy/.podman/sabnzbd/config:/config
      - /home/andy/Downloads/complete:/downloads
      - /home/andy/Downloads/incomplete:/incomplete-downloads
    ports:
      - 8080:8080
  sonarr:
    hostname: sonarr
    image: linuxserver/sonarr:latest
    container_name: sonarr
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=America/New_York
    volumes:
      - /home/andy/.podman/sonarr/config:/config
      - /mnt/tvshows:/tv
      - /home/andy/Downloads/complete/tv:/downloads
      - /etc/localtime:/etc/localtime
    ports:
      - 8989:8989
    restart: unless-stopped
  mylar3:
    image: linuxserver/mylar3
    container_name: mylar3
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=America/New_York
    volumes:
      - /home/andy/.podman/mylar3/config:/config
      - /mnt/comics:/comics
      - /home/andy/Downloads/complete/comics:/downloads
    ports:
      - 8090:8090
    restart: unless-stopped

When I connect to the container and go into any of the following directories:

/config
/downloads
/comics

and do an ls I get a permission denied error.

This is probably something utterly stupid and simple, but I can’t figure it out.

Even though the directory says .podman, I am definitely running docker.

Figured it out!

It was SELinux. Added a :z to the end of each volume line and the containers started up and the software worked.

This topic was automatically closed 5 days after the last reply. New replies are no longer allowed.