Skip to content

Commit 45af02c

Browse files
authored
Merge pull request #49 from robertcsakany/feature/AddDozzleContainer
Feature/add dozzle container
2 parents d3d676b + e102a7e commit 45af02c

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

.templates/dozzle/service.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
dozzle:
2+
container_name: dozzle
3+
image: amir20/dozzle:latest
4+
restart: unless-stopped
5+
network_mode: host
6+
ports:
7+
- 8888:8080
8+
volumes:
9+
- /var/run/docker.sock:/var/run/docker.sock

.templates/mosquitto/mosquitto.conf

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
persistence true
22
persistence_location /mosquitto/data/
3-
log_dest file /mosquitto/log/mosquitto.log
3+
#log_dest file /mosquitto/log/mosquitto.log
4+
# To avoid flash wearing
5+
log_dest stdout
46

57
#Uncomment to enable passwords
68
#password_file /mosquitto/config/pwfile

menu.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ declare -A cont_array=(
3232
[homebridge]="Homebridge"
3333
[python]="Python 3"
3434
[gitea]="Gitea"
35+
[dozzle]="Dozzle"
3536
)
3637

3738
declare -a armhf_keys=(
@@ -62,6 +63,7 @@ declare -a armhf_keys=(
6263
"homebridge"
6364
"python"
6465
"gitea"
66+
"dozzle"
6567
# add yours here
6668
)
6769
sys_arch=$(uname -m)

0 commit comments

Comments
 (0)