mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-11 10:21:02 +01:00
16
joal/Dockerfile
Normal file
16
joal/Dockerfile
Normal file
@@ -0,0 +1,16 @@
|
||||
ARG BUILD_FROM
|
||||
FROM $BUILD_FROM
|
||||
|
||||
|
||||
RUN mkdir -p /joal \
|
||||
&& curl -L -s \
|
||||
"https://github.com/anthonyraymond/joal/releases/download/2.1.24/joal.tar.gz" \
|
||||
| tar zxvf - -C /joal \
|
||||
&& chown -R $(id -u):$(id -g) /joal \
|
||||
&& rm -fr \
|
||||
/tmp/*
|
||||
|
||||
VOLUME /data
|
||||
|
||||
CMD [ "--joal-conf=/joal" ]
|
||||
VOLUME [ "/data" ]
|
||||
31
joal/README.md
Normal file
31
joal/README.md
Normal file
@@ -0,0 +1,31 @@
|
||||
# Home assistant add-on: Joal
|
||||
![Supports aarch64 Architecture][aarch64-shield] ![Supports amd64 Architecture][amd64-shield] ![Supports armhf Architecture][armhf-shield] ![Supports armv7 Architecture][armv7-shield]
|
||||
|
||||
## About
|
||||
|
||||
An open source command line RatioMaster with WebUI.
|
||||
This addon is based on the [docker image](https://hub.docker.com/r/anthonyraymond/joal) from Anthony Raymond.
|
||||
|
||||
## Installation
|
||||
|
||||
The installation of this add-on is pretty straightforward and not different in
|
||||
comparison to installing any other Hass.io add-on.
|
||||
|
||||
1. [Add my Hass.io add-ons repository][repository] to your Hass.io instance.
|
||||
1. Install this add-on.
|
||||
1. Click the `Save` button to store your configuration.
|
||||
1. Make sure that the two ports are open on your router
|
||||
1. Start the add-on.
|
||||
1. Check the logs of the add-on to see if everything went well.
|
||||
1. Carefully configure the add-on to your preferences, see the official documentation for for that.
|
||||
|
||||
## Configuration
|
||||
|
||||
Webui can be found at `<your-ip>:8081/joal/ui`.
|
||||
You'll need to open the options and encode the secret token lrMY24Byhx
|
||||
|
||||
[repository]: https://github.com/alexbelgium/hassio-addons
|
||||
[aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
|
||||
[amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
|
||||
[armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
|
||||
[armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg
|
||||
11
joal/build.json
Normal file
11
joal/build.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"build_from": {
|
||||
"armv7": "anthonyraymond/joal:2.1.24-arm",
|
||||
"armhf": "anthonyraymond/joal:2.1.24-arm",
|
||||
"aarch64": "anthonyraymond/joal:2.1.24-arm64",
|
||||
"amd64": "anthonyraymond/joal:2.1.24-amd64"
|
||||
},
|
||||
"squash": false,
|
||||
"args": {}
|
||||
}
|
||||
|
||||
36
joal/config.json
Normal file
36
joal/config.json
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"name": "Joal Desktop test",
|
||||
"version": "2.1.24",
|
||||
"slug": "joal",
|
||||
"description": "An open source command line RatioMaster with WebUI",
|
||||
"url": "https://github.com/alexbelgium/hassio-addons/tree/master/joal",
|
||||
"startup": "services",
|
||||
"arch": [
|
||||
"aarch64",
|
||||
"amd64",
|
||||
"armv7",
|
||||
"armhf"
|
||||
],
|
||||
"ports": {
|
||||
"49152/tcp": 49152,
|
||||
"8081/tcp": 8081
|
||||
},
|
||||
"ports_description": {
|
||||
"49152/tcp": "torrent port - hardcoded, can't change",
|
||||
"8081/tcp": "Web UI port - hardcoded, can't change"
|
||||
},
|
||||
"webui": "http://[HOST]:[PORT:8081]/joal/ui",
|
||||
"boot": "auto",
|
||||
"host_network": true,
|
||||
"environment": {
|
||||
"spring.main.web-environment": true,
|
||||
"joal.iframe.enabled":false,
|
||||
"joal.ui.path.prefix": "joal",
|
||||
"joal.ui.secret-token": "lrMY24Byhx",
|
||||
"server.port": 8081
|
||||
},
|
||||
"options": {
|
||||
},
|
||||
"schema": {
|
||||
}
|
||||
}
|
||||
BIN
joal/icon.png
Normal file
BIN
joal/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 12 KiB |
BIN
joal/logo.png
Normal file
BIN
joal/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 12 KiB |
Reference in New Issue
Block a user