Skip to content

Introduction

Installing MIND can be done via Docker or via a manual instal. Docker requires less setup and has better support, but if your OS/system does not support Docker, you can also instal MIND directly on your OS via a manual instal.

Recommended Installation

The recommended way to instal MIND is using Docker.

For instructions on installing MIND using Docker, see the Docker installation instructions. For instructions on installing Kapowarr via a manual instal, see the manual installation instructions.

The Setup After Installation page contains the basic steps to take after installing MIND. It's advised to check it out.

Updating an installation can also be found on the installation pages of the respective installation method.

Quick Instructions

If you already have experience with Docker, then below you can find some quick instructions to get MIND up and running fast. If you need some more guidance, follow the full guide for Docker or a manual instal.

Replace the timezone value (TZ=) with the TZ database name of your timezone (value of TZ identifier on webpage). The database will be stored in a Docker volume.

docker run -d \
    --name mind \
    -v "mind-db:/app/db" \
    -e TZ=Europe/Amsterdam \
    -p 8080:8080 \
    mrcas/mind:latest
docker run -d \
    --name mind \
    -v "mind-db:/app/db" \
    -e TZ=Europe/Amsterdam \
    -p 8080:8080 \
    mrcas/mind:latest
docker run -d --name mind -v "mind-db:/app/db" -e TZ=Europe/Amsterdam -p 8080:8080 mrcas/mind:latest
version: "3.3"
services:
  mind:
    container_name: mind
      image: mrcas/mind:latest
      volumes:
        - "mind-db:/app/db"
      environment:
        - TZ=Europe/Amsterdam
      ports:
        - 8080:8080

volumes:
  mind-db: