Naposledy aktivní 1740935095

Dozzle is a small lightweight application with a web based interface to monitor Docker logs. It doesn’t store any log files. It is for live monitoring of your container logs only.

emanuelegori's Avatar emanuelegori revidoval tento gist 1740935095. Přejít na revizi

1 file changed, 2 insertions, 2 deletions

docker.compose.yml

@@ -2,8 +2,8 @@ services:
2 2 dozzle:
3 3 container_name: dozzle
4 4 image: amir20/dozzle:latest
5 - # ports:
6 - # - 9999:8080
5 + ports:
6 + - 9999:8080
7 7 environment:
8 8 - DOZZLE_AUTH_PROVIDER=simple
9 9 - DOZZLE_HOSTNAME=<tuo_hostname>

emanuelegori's Avatar emanuelegori revidoval tento gist 1740935073. Přejít na revizi

1 file changed, 1 insertion, 1 deletion

docker.compose.yml

@@ -6,7 +6,7 @@ services:
6 6 # - 9999:8080
7 7 environment:
8 8 - DOZZLE_AUTH_PROVIDER=simple
9 - - DOZZLE_HOSTNAME=vps-1aece92e.vps.ovh.net
9 + - DOZZLE_HOSTNAME=<tuo_hostname>
10 10 volumes:
11 11 - /var/run/docker.sock:/var/run/docker.sock
12 12 - ./dozzle-data:/data

emanuelegori's Avatar emanuelegori revidoval tento gist 1740241012. Přejít na revizi

Žádné změny

emanuelegori's Avatar emanuelegori revidoval tento gist 1734867187. Přejít na revizi

1 file changed, 2 insertions

users.yml

@@ -1,3 +1,5 @@
1 + # make a new file called “users.yml” inside the “dozzle-data” directory
2 +
1 3 users:
2 4 admin: #username
3 5 name: "Emanuele" #full name

emanuelegori's Avatar emanuelegori revidoval tento gist 1734866971. Přejít na revizi

2 files changed, 24 insertions

docker.compose.yml(vytvořil soubor)

@@ -0,0 +1,19 @@
1 + services:
2 + dozzle:
3 + container_name: dozzle
4 + image: amir20/dozzle:latest
5 + # ports:
6 + # - 9999:8080
7 + environment:
8 + - DOZZLE_AUTH_PROVIDER=simple
9 + - DOZZLE_HOSTNAME=vps-1aece92e.vps.ovh.net
10 + volumes:
11 + - /var/run/docker.sock:/var/run/docker.sock
12 + - ./dozzle-data:/data
13 + networks:
14 + - npm-internal
15 + restart: unless-stopped
16 + networks:
17 + npm-internal:
18 + name: npm-internal
19 + external: true

users.yml(vytvořil soubor)

@@ -0,0 +1,5 @@
1 + users:
2 + admin: #username
3 + name: "Emanuele" #full name
4 + password: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxx" #Bcrypt Hash
5 + email: "zzzzzzzzzzz" #email
Novější Starší