From 7f7e9618fa2689c136f34b90c069859ee0367241 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Mon, 7 Dec 2020 13:51:15 +0100 Subject: [PATCH] try again with marcelveldt repo --- radarr/config.json | 29 --------------------- {radarr => transmission}/Dockerfile | 0 {radarr => transmission}/README.md | 0 transmission/config.json | 39 ++++++++++++++++++++++++++++ {radarr => transmission}/icon.png | Bin {radarr => transmission}/logo.png | Bin 6 files changed, 39 insertions(+), 29 deletions(-) delete mode 100644 radarr/config.json rename {radarr => transmission}/Dockerfile (100%) rename {radarr => transmission}/README.md (100%) create mode 100644 transmission/config.json rename {radarr => transmission}/icon.png (100%) rename {radarr => transmission}/logo.png (100%) diff --git a/radarr/config.json b/radarr/config.json deleted file mode 100644 index 803121efa..000000000 --- a/radarr/config.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "name": "Radarr", - "version": "latest", - "slug": "radarr_docker", - "description": "Radarr add-on based on the prebuilt docker image from linuxserver", - "url": "https://github.com/marcelveldt/hassio-addons-repo/radarr", - "startup": "services", - "arch": [ - "aarch64", - "amd64", - "armhf" - ], - "ports": { - "7878/tcp": 7878 - }, - "map": [ - "backup:rw", - "share:rw", - "ssl" - ], - "webui": "http://[HOST]:[PORT:7878]", - "boot": "auto", - "environment": { - "PUID": "0", - "PGID": "0" - }, - "options": {}, - "schema": {} -} \ No newline at end of file diff --git a/radarr/Dockerfile b/transmission/Dockerfile similarity index 100% rename from radarr/Dockerfile rename to transmission/Dockerfile diff --git a/radarr/README.md b/transmission/README.md similarity index 100% rename from radarr/README.md rename to transmission/README.md diff --git a/transmission/config.json b/transmission/config.json new file mode 100644 index 000000000..c722c26e4 --- /dev/null +++ b/transmission/config.json @@ -0,0 +1,39 @@ +{ + "name": "Transmission without vpn", + "version": "latest", + "slug": "transmission_docker", + "description": "The torrent client for Hass.io with OpenVPN support", + "url": "https://github.com/alexbelgium/hassio-addons", + "startup": "services", + "arch": [ + "aarch64", + "amd64", + "armv7", + "armhf" + ], + "ports": { + "9091/tcp": 9091, + "51413/tcp": 51413, + "51413/udp": 51413 + }, + "ports_description": { + "9091/tcp": "Web UI port", + "51413/tcp": "Peer port (setup port forwarding to this port)", + "51413/udp": "Peer port (setup port forwarding to this port)" + }, + "map": [ + "backup:rw", + "share:rw", + "ssl" + ], + "webui": "http://[HOST]:[PORT:9091]/transmission/web/", + "boot": "auto", + "environment": { + "PUID": "0", + "PGID": "0" + }, + "ingress": "true", + "ingress_port": 9091, + "options": {}, + "schema": {} +} \ No newline at end of file diff --git a/radarr/icon.png b/transmission/icon.png similarity index 100% rename from radarr/icon.png rename to transmission/icon.png diff --git a/radarr/logo.png b/transmission/logo.png similarity index 100% rename from radarr/logo.png rename to transmission/logo.png