test transmission linuxserver

This commit is contained in:
Alexandre
2020-12-13 11:46:47 +01:00
parent 9563d06f2c
commit 90c8b55f14
12 changed files with 201 additions and 3 deletions

View File

@@ -0,0 +1,51 @@
{
"name": "Transmission",
"version": "1.0",
"slug": "transmission_ls",
"description": "Bittorrent client.",
"url": "https://github.com/alexbelgium/transmission_ls",
"startup": "services",
"arch": [
"aarch64",
"amd64",
"armv7",
"armhf"
],
"ports": {
"9091/tcp": null,
"51413/tcp": 51413,
"51413/udp": 51413
},
"ports_description": {
"9091/tcp": "Web UI port (Not required for Hass.io Ingress)",
"51413/tcp": "Peer port (setup port forwarding to this port)",
"51413/udp": "Peer port (setup port forwarding to this port)"
},
"map": [
"config:rw",
"share:rw",
"media:rw",
"ssl"
],
"privileged": ["SYS_ADMIN", "DAC_READ_SEARCH"],
"full_access": true,
"webui": "http://[HOST]:[PORT:8443]",
"boot": "auto",
"environment": {
"PUID": 0,
"PGID": 0
},
"options": {
"PUID": 0,
"PGID": 0,
"download_dir": "/share/downloads",
"incomplete_dir": "/share/incomplete"
},
"schema": {
"PUID": "int",
"PGID": "int",
"TZ": "str?",
"download_dir": "str",
"incomplete_dir": "str"
}
}