Skip to content

Commit

Permalink
feat(docker): Add Dozzle container for Docker log management
Browse files Browse the repository at this point in the history
  • Loading branch information
neumachen committed Feb 26, 2025
1 parent c2ef034 commit 43f1652
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
13 changes: 13 additions & 0 deletions docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,19 @@
# SPDX-License-Identifier: Apache-2.0

services:
dozzle:
container_name: dozzle
image: amir20/dozzle:latest
volumes:
- /var/run/docker.sock:/var/run/docker.sock
ports:
- ${BH_DOZZLE_PORT:-127.0.0.1:18080}:8080
labels:
- traefik.enable=true
- traefik.http.routers.dozzle.rule=Host(`${BH_DOZZLE_HOSTNAME:-dozzle.localhost}`)
- traefik.http.routers.dozzle.service=dozzle
- traefik.http.services.dozzle.loadbalancer.server.port=8080

proxy:
image: docker.io/library/traefik:latest
command:
Expand Down
3 changes: 3 additions & 0 deletions examples/docker-compose/.env.example
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Select the image tag to use (latest, edge, or version number)
BLOODHOUND_TAG=latest

BH_DOZZLE_HOSTNAME=dozzle.localhost
BH_DOZZLE_PORT=18080

# Graph driver switch (use neo4j or pg)
GRAPH_DRIVER=neo4j

Expand Down

0 comments on commit 43f1652

Please sign in to comment.