addition of nextcloud and transmission based on linuxserver

This commit is contained in:
Alexandre
2020-12-12 12:33:54 +01:00
parent cfdd88a202
commit 62cfdf646a
47 changed files with 734 additions and 121 deletions

View File

@@ -1,67 +1,47 @@
{
"name": "Transmission NAS",
"version": "1.2",
"slug": "transmission",
"description": "The torrent client for Hass.io with OpenVPN support",
"url": "https://github.com/pierrickrouxel/hassio-addon-transmission",
"webui": "http://[HOST]:[PORT:9091]/transmission/web/",
"startup": "services",
"ingress": "true",
"ingress_port": 8099,
"panel_icon": "mdi:progress-download",
"panel_title": "Transmission",
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
"map": [
"config:rw",
"share:rw",
"media:rw",
"ssl"
],
"boot": "auto",
"name": "Transmission",
"version": "3.00-r0-ls69",
"slug": "transmission",
"description": "The torrent client for Hass.io",
"url": "https://hub.docker.com/alexbelgium/transmission",
"startup": "services",
"arch": [
"aarch64",
"amd64",
"armv7",
"armhf"
],
"ports": {
"9091/tcp": null,
"9091/tcp": 9091,
"51413/tcp": 51413,
"51413/udp": 51413
},
"ports_description": {
"9091/tcp": "Web UI port (Not required for Hass.io Ingress)",
"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)"
},
"privileged": [
"NET_ADMIN"
],
"devices": [
"/dev/net/tun:/dev/net/tun:rwm"
],
"privileged": ["SYS_ADMIN", "DAC_READ_SEARCH"],
"full_access": true,
"hassio_api": true,
"homeassistant_api": false,
"host_network": false,
"options": {
"log_level": "info",
"authentication_required": false,
"username": "",
"password": "",
"localdisks": ["sda1"],
"openvpn_enabled": false,
"openvpn_config": "",
"openvpn_username": "",
"openvpn_password": ""
},
"schema": {
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)",
"authentication_required": "bool",
"username": "str",
"password": "str",
"localdisks": ["str"],
"openvpn_enabled": "bool",
"openvpn_config": "str",
"openvpn_username": "str",
"openvpn_password": "str"
},
"environment": {
"LOG_FORMAT": "{LEVEL}: {MESSAGE}"
}
"map": [
"config:rw",
"share:rw",
"media:rw",
"ssl"
],
"webui": "http://[HOST]:[PORT:8099]",
"boot": "auto",
"environment": {
"PUID": 0,
"PGID": 0
},
"options": {
"PUID": 0,
"PGID": 0,
"TRANSMISSION_WEB_HOME": "/combustion-release/"
},
"schema": {
"PUID": "int",
"PGID": "int",
"TRANSMISSION_WEB_HOME": "str?",
"TZ": "str?"
}
}