|
@@ -150,20 +150,6 @@ To use search bar you need to type your search query with selected prefix. For e
|
|
2. Get lat/long for your location. You can get them from [latlong.net](https://www.latlong.net/convert-address-to-lat-long.html).
|
|
2. Get lat/long for your location. You can get them from [latlong.net](https://www.latlong.net/convert-address-to-lat-long.html).
|
|
3. Enter and save data. Weather widget will now update and should be visible on Home page.
|
|
3. Enter and save data. Weather widget will now update and should be visible on Home page.
|
|
|
|
|
|
-### Supported URL formats for applications and bookmarks
|
|
|
|
-
|
|
|
|
-#### Rules
|
|
|
|
-
|
|
|
|
-- URL starts with `http://`
|
|
|
|
- - Format: `http://www.domain.com`, `http://domain.com`
|
|
|
|
- - Redirect: `{dest}`
|
|
|
|
-- URL starts with `https://`
|
|
|
|
- - Format: `https://www.domain.com`, `https://domain.com`
|
|
|
|
- - Redirect: `https://{dest}`
|
|
|
|
-- URL without protocol
|
|
|
|
- - Format: `www.domain.com`, `domain.com`, `sub.domain.com`, `local`, `ip`, `ip:port`
|
|
|
|
- - Redirect: `http://{dest}`
|
|
|
|
-
|
|
|
|
### Docker integration
|
|
### Docker integration
|
|
|
|
|
|
In order to use the Docker integration, each container must have the following labels:
|
|
In order to use the Docker integration, each container must have the following labels:
|
|
@@ -177,6 +163,8 @@ labels:
|
|
# - flame.icon=custom to make changes in app. ie: custom icon upload
|
|
# - flame.icon=custom to make changes in app. ie: custom icon upload
|
|
```
|
|
```
|
|
|
|
|
|
|
|
+And you must have activated the Docker sync option in the settings panel.
|
|
|
|
+
|
|
You can set up different apps in the same label adding `;` between each one.
|
|
You can set up different apps in the same label adding `;` between each one.
|
|
|
|
|
|
```yml
|
|
```yml
|
|
@@ -187,7 +175,28 @@ labels:
|
|
- flame.icon=icon-name1;icon-name2
|
|
- flame.icon=icon-name1;icon-name2
|
|
```
|
|
```
|
|
|
|
|
|
-And you must have activated the Docker sync option in the settings panel.
|
|
|
|
|
|
+If you want to use a remote docker host follow this instructions in the host:
|
|
|
|
+
|
|
|
|
+- Open the file `/lib/systemd/system/docker.service`, search for `ExecStart` and edit the value
|
|
|
|
+
|
|
|
|
+```text
|
|
|
|
+ExecStart=/usr/bin/dockerd -H tcp://0.0.0.0:${PORT} -H unix:///var/run/docker.sock
|
|
|
|
+```
|
|
|
|
+
|
|
|
|
+>The above command will bind the docker engine server to the Unix socket as well as TCP port of your choice. “0.0.0.0” means docker-engine accepts connections from all IP addresses.
|
|
|
|
+
|
|
|
|
+- Restart the daemon and Docker service
|
|
|
|
+
|
|
|
|
+```shell
|
|
|
|
+sudo systemctl daemon-reload
|
|
|
|
+sudo service docker restart
|
|
|
|
+```
|
|
|
|
+
|
|
|
|
+- Test if it is working
|
|
|
|
+
|
|
|
|
+```shell
|
|
|
|
+curl http://${IP}:${PORT}/version
|
|
|
|
+```
|
|
|
|
|
|
### Kubernetes integration
|
|
### Kubernetes integration
|
|
|
|
|