Skip to content

Using Container Actions

Dozzle now supports Container Actions, which allows you to start, stop and restart container from within the UI in the dropdown menu.

Container Acions Menu UI

This feature is disabled by default, which can be enabled by setting environment variableDOZZLE_ENABLE_ACTIONS to true

sh
docker run --volume=/var/run/docker.sock:/var/run/docker.sock -p 8080:8080 amir20/dozzle --enable-actions
yaml
version: "3"
services:
  dozzle:
    image: amir20/dozzle:latest
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
    ports:
      - 8080:8080
    environment:
      DOZZLE_ENABLE_ACTIONS: true

Released under the MIT License. Open sourced and sponsored by Docker OSS.