/dolce

Get notified if something happens with you container

Primary LanguageTypeScriptMIT LicenseMIT

Docker Live Container Events

Dolce logo

documentation buy me a coffee current release build status licence: MIT docker pulls

Features

Get notified if something (bad) happens to your containers. Supports the following notification options:

  • EMail via SMTP
  • Discord via WebHooks
  • Telegram via the Bot API

All Notifications use a exponential backoff algorithm to avoid spamming you with messages if a container decides to go into a restart loop.

Documentation

Check the documentation for a full list of features. The documentation is also versioned for old versions.

Example

version: "3"
services:
  importantservice:
    image: "ubuntu:latest"
    command: "sleep 1; exit 0;"
    restart: unless-stopped

  dolce:
    image: dangrie158/dolce:v2.10.7
    restart: unless-stopped
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
    environment:
        DISCORD_WEBHOOK: https://ptb.discord.com/api/webhooks/<YOUR_WEBHOOK>