Skip to main content

Installation - Docker Image

Requirements

In addition to the base requirements:

Installation

  1. Pull the docker image of choice

    • For stable releases: docker pull lscr.io/linuxserver/mylar3:latest
    • For development releases: docker pull lscr.io/linuxserver/mylar3:nightly

    BE AWARE: If the development releases break, you get to keep the parts.

  2. Run the image

    • Using docker run:

        docker run -d \
      --name=mylar3 \
      -e PUID=1000 \
      -e PGID=1000 \
      -e TZ=Etc/UTC \
      -p 8090:8090 \
      -v /path/to/data:/config \
      -v /path/to/comics:/comics \
      -v /path/to/downloads:/downloads \
      --restart unless-stopped \
      lscr.io/linuxserver/mylar3:latest
    • Using docker compose:

      version: "2.1"
      services:
      mylar3:
      image: lscr.io/linuxserver/mylar3:latest
      container_name: mylar3
      environment:
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
      volumes:
      - /path/to/data:/config
      - /path/to/comics:/comics
      - /path/to/downloads:/downloads
      ports:
      - 8090:8090
      restart: unless-stopped
  3. Access the Web Interface under http://<your-host>:8090