Moved to _dev

This commit is contained in:
2025-09-20 16:11:47 +02:00
parent fb1a8753b7
commit b2ba11fcd3
1670 changed files with 224899 additions and 0 deletions

10
dozzle/agent.compose.yaml Normal file
View File

@@ -0,0 +1,10 @@
services:
dozzle-agent:
container_name: dozzle-agent
image: amir20/dozzle:latest
restart: unless-stopped
command: agent
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
ports:
- 17007:7007

6
dozzle/dozzle-users.yaml Normal file
View File

@@ -0,0 +1,6 @@
users:
admin:
email: admin@delmar.bzh
name: Admin
password: $2a$11$VVQBGzM7HfVaRdHVPAEuBOt5ZpukK.ysXYJAWuuS4iHwH0dwu7Uvq
filter: ""

View File

@@ -0,0 +1,26 @@
services:
dozzle:
container_name: dozzle
image: amir20/dozzle:latest
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- DOZZLE_AUTH_PROVIDER=simple
- DOZZLE_REMOTE_AGENT=192.168.1.12:17007,192.168.1.13:17007,192.168.1.14:17007,192.168.1.15:17007,192.168.1.16:17007,192.168.1.17:17007
- DOZZLE_ENABLE_ACTIONS=true
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- dozzle:/data
secrets:
- source: users
target: /data/users.yaml
ports:
- 17006:8080
secrets:
users:
file: dozzle-users.yaml
volumes:
dozzle: