Skip to content

Latest commit

 

History

History
29 lines (26 loc) · 1.16 KB

README.md

File metadata and controls

29 lines (26 loc) · 1.16 KB

Whaler

Build Status Code Climate Test Coverage Issue Count

Whaler keeps an eye on your docker containers and notices you when they die.

Whaler works by invoking the jar-file with the path to a config.json file as the first parameter. The structure of the JSON-file is the following:

{
  "machines": [
    {
      "host": "my-machine-dns",
      "credentials": "username:password",
      "containers": [
        "mydockerslave1"
      ]
    }
  ],
  "email": {
    "smtpHost": "smtp.googlemail.com",
    "smtpPort": 465,
    "username": "username",
    "password": "password",
    "fromEmail": "[email protected]",
    "toEmail": "[email protected]",
    "useSSL": true
  }
}