* Updated README * Added EXPOSE to Dockerfile for Docker Desktop * Refactored docker compose file * Updated CONTRIBUTING * Docs update * Added docs for sending files * Added styling of scroll bar * Fixed various colors * Fixed Dockerfile exposed port * Updated api docs for merging * Attempt at fixing merge problems
2.0 KiB
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.
!!! success "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 CLI" === "Linux"
```bash
docker run -d \
--name mind \
-v "mind-db:/app/db" \
-e TZ=Europe/Amsterdam \
-p 8080:8080 \
mrcas/mind:latest
```
=== "MacOS"
```bash
docker run -d \
--name mind \
-v "mind-db:/app/db" \
-e TZ=Europe/Amsterdam \
-p 8080:8080 \
mrcas/mind:latest
```
=== "Windows"
```powershell
docker run -d --name mind -v "mind-db:/app/db" -e TZ=Europe/Amsterdam -p 8080:8080 mrcas/mind:latest
```
=== "Docker Compose"
```yml
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:
```