emanuelegori ha revisionato questo gist 8 months ago. Vai alla revisione
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 ha revisionato questo gist 8 months ago. Vai alla revisione
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 ha revisionato questo gist 8 months ago. Vai alla revisione
Nessuna modifica
emanuelegori ha revisionato questo gist 10 months ago. Vai alla revisione
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 ha revisionato questo gist 10 months ago. Vai alla revisione
2 files changed, 24 insertions
docker.compose.yml(file creato)
| @@ -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(file creato)
| @@ -0,0 +1,5 @@ | |||
| 1 | + | users: | |
| 2 | + | admin: #username | |
| 3 | + | name: "Emanuele" #full name | |
| 4 | + | password: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxx" #Bcrypt Hash | |
| 5 | + | email: "zzzzzzzzzzz" #email | |