Add unmanic and fix transmission-vpn. (#1133)

This commit is contained in:
Stavros Iliopoulos 2023-09-04 20:51:50 +03:00 committed by GitHub
parent d033d7a9e2
commit dd11d7f35a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 96 additions and 2 deletions

View File

@ -11,7 +11,7 @@
},
"id": "transmission-vpn",
"tipi_version": 3,
"version": "5.1.1@sha256:c5a66e4c9df0b326310b81cfcd7fa1c0cd61ebeaf60b4651188c94b8afde3aca",
"version": "5.1.1",
"categories": [
"utilities",
"security"

View File

@ -1,6 +1,6 @@
services:
transmission-vpn:
image: haugene/transmission-openvpn:5.1.1@sha256:c5a66e4c9df0b326310b81cfcd7fa1c0cd61ebeaf60b4651188c94b8afde3aca
image: haugene/transmission-openvpn:5.1.1
container_name: transmission-vpn
cap_add:
- NET_ADMIN

21
apps/unmanic/config.json Normal file
View File

@ -0,0 +1,21 @@
{
"$schema": "../schema.json",
"name": "Unmanic",
"port": 8256,
"available": true,
"exposable": true,
"id": "unmanic",
"tipi_version": 1,
"version": "0.2.4",
"categories": [
"utilities",
"data",
"media"
],
"description": "Unmanic gives you the power to automate the management of any file library.",
"short_desc": "Unmanic - Library Optimiser.",
"author": "Unmanic",
"source": "https://github.com/Unmanic/unmanic",
"website": "https://docs.unmanic.app/",
"form_fields": []
}

View File

@ -0,0 +1,43 @@
version: "3.5"
services:
unmanic:
image: josh5/unmanic:0.2.4
restart: unless-stopped
container_name: unmanic
privileged: true
ports:
- ${APP_PORT}:8888
networks:
- tipi_main_network
environment:
- PUID=${TIPI_UID}
- PGID=${TIPI_GID}
volumes:
- ${APP_DATA_DIR}/data/config:/config
- ${ROOT_FOLDER_HOST}/data:/library
- ${APP_DATA_DIR}/data/temp:/tmp/unmanic
labels:
# Main
traefik.enable: true
traefik.http.middlewares.unmanic-web-redirect.redirectscheme.scheme: https
traefik.http.services.unmanic.loadbalancer.server.port: 8888
# Web
traefik.http.routers.unmanic-insecure.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.unmanic-insecure.entrypoints: web
traefik.http.routers.unmanic-insecure.service: unmanic
traefik.http.routers.unmanic-insecure.middlewares: unmanic-web-redirect
# Websecure
traefik.http.routers.unmanic.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.unmanic.entrypoints: websecure
traefik.http.routers.unmanic.service: unmanic
traefik.http.routers.unmanic.tls.certresolver: myresolver
# Local domain
traefik.http.routers.unmanic-local-insecure.rule: Host(`unmanic.${LOCAL_DOMAIN}`)
traefik.http.routers.unmanic-local-insecure.entrypoints: web
traefik.http.routers.unmanic-local-insecure.service: unmanic
traefik.http.routers.unmanic-local-insecure.middlewares: unmanic-web-redirect
# Local domain secure
traefik.http.routers.unmanic-local.rule: Host(`unmanic.${LOCAL_DOMAIN}`)
traefik.http.routers.unmanic-local.entrypoints: websecure
traefik.http.routers.unmanic-local.service: unmanic
traefik.http.routers.unmanic-local.tls: true

View File

@ -0,0 +1,30 @@
Unmanic - Library Optimiser
===========================
![UNMANIC - Library Optimiser](https://github.com/unmanic/unmanic/raw/master/logo.png)
---
Unmanic is a simple tool for optimising your file library. You can use it to convert your files into a single, uniform format, manage file movements based on timestamps, or execute custom commands against a file based on its file size.
Simply configure Unmanic pointing it at your library and let it automatically manage that library for you.
Unmanic provides you with the following main functions:
- A scheduler built in to scan your whole library for files that do not conform to your configured file presets. Files found requiring processing are then queued.
- A file/directory monitor. When a file is modified, or a new file is added in your library, Unmanic is able to again test that against your configured file presets. Like the first function, if this file requires processing, it is added to a queue for processing.
- A handler to manage running multiple file manipulation tasks at a time.
- A Web UI to easily configure, manage and monitor the progress of your library optimisation.
You choose how you want your library to be.
Some examples of how you may use Unmanic:
- Trans-code video or audio files into a uniform format using FFmpeg.
- Identify (and remove if desired) commercials in DVR recordings shortly after they have completed being recorded.
- Move files from one location to another after a configured period of time.
- Automatically execute FileBot rename files in your library as they are added.
- Compress files older than a specified age.
- Run any custom command against files matching a certain extension or above a configured file size.
The Docker container is currently based `linuxserver.io` Ubuntu focal image.

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB