18 lines
617 B
YAML
18 lines
617 B
YAML
# Run with docker compose up -d
|
|
services:
|
|
dozzle:
|
|
image: amir20/dozzle:latest
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
ports:
|
|
- 192.168.0.131:8009:8080
|
|
environment:
|
|
# Uncomment to enable container actions (stop, start, restart). See https://dozzle.dev/guide/actions
|
|
# - DOZZLE_ENABLE_ACTIONS=true
|
|
#
|
|
# Uncomment to allow access to container shells. See https://dozzle.dev/guide/shell
|
|
- DOZZLE_ENABLE_SHELL=true
|
|
#
|
|
# Uncomment to enable authentication. See https://dozzle.dev/guide/authentication
|
|
# - DOZZLE_AUTH_PROVIDER=simple
|