2023-05-29 20:08:57 +02:00
|
|
|
---
|
|
|
|
title: Unmanic
|
|
|
|
visible: false
|
|
|
|
---
|
|
|
|
|
|
|
|
[toc]
|
|
|
|
|
2023-05-29 21:23:09 +02:00
|
|
|
## Networking
|
|
|
|
|
|
|
|
```
|
|
|
|
8888: Port for Webinterface
|
|
|
|
```
|
|
|
|
|
2023-05-29 20:08:57 +02:00
|
|
|
## Installation
|
|
|
|
|
|
|
|
```
|
|
|
|
podman run -itd \
|
|
|
|
--name unmanic \
|
|
|
|
-e PUID=0 \
|
|
|
|
-e PGID=0 \
|
|
|
|
-p 8888:8888 \
|
2023-05-29 21:23:09 +02:00
|
|
|
-v /mnt/unmanic/config:/config \
|
|
|
|
-v /mnt/unmanic/medialib:/medialib \
|
|
|
|
-v /mnt/unmanic/cache:/tmp/unmanic \
|
2023-05-29 20:08:57 +02:00
|
|
|
docker.io/josh5/unmanic:latest
|
|
|
|
```
|
2023-05-29 21:23:09 +02:00
|
|
|
|
|
|
|
## Authentication
|
|
|
|
|
|
|
|
> [nginx basic auth](https://docs.nginx.com/nginx/admin-guide/security-controls/configuring-http-basic-authentication/)
|
|
|
|
|
|
|
|
Unmanic does not have any authentication built in. However, it does support basic authentication for remote servers.
|
|
|
|
To use basic auth however, a webserver has to be configured through which Unmanic will be accessed.
|