Última atividade 10 months ago

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 revisou este gist 10 months ago. Ir para a revisão

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 revisou este gist 10 months ago. Ir para a revisão

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 revisou este gist 10 months ago. Ir para a revisão

Sem alterações

emanuelegori revisou este gist 1 year ago. Ir para a revisão

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 revisou este gist 1 year ago. Ir para a revisão

2 files changed, 24 insertions

docker.compose.yml(arquivo criado)

@@ -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(arquivo criado)

@@ -0,0 +1,5 @@
1 + users:
2 + admin: #username
3 + name: "Emanuele" #full name
4 + password: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxx" #Bcrypt Hash
5 + email: "zzzzzzzzzzz" #email
Próximo Anterior