1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-19 03:29:37 +02:00

Add custom icon & multiple apps support to Docker API

This commit is contained in:
Pablo Ruiz 2021-09-29 22:26:12 +02:00
parent ebae61a688
commit 9606978bd7
2 changed files with 43 additions and 10 deletions

View file

@ -174,6 +174,17 @@ labels:
- flame.name=My container
- flame.url=https://example.com
- flame.icon=icon-name # Optional, default is "docker"
# - flame.icon=custom to make changes in app. ie: custom icon upload
```
You can set up different apps in the same label adding `;` between each one.
```yml
labels:
- flame.type=application
- flame.name=First App;Second App
- flame.url=https://example1.com;https://example2.com
- flame.icon=icon-name1;icon-name2
```
And you must have activated the Docker sync option in the settings panel.