diff --git a/Cargo.lock b/Cargo.lock index f07fa69..e824dbb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -165,7 +165,7 @@ dependencies = [ [[package]] name = "docker-autoheal" -version = "0.2.3" +version = "0.2.7" dependencies = [ "bollard", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 5460299..129abcb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "docker-autoheal" -version = "0.2.3" +version = "0.2.7" authors = ["Travis M Knight "] license = "MIT" description = "Monitor and restart unhealthy docker containers" diff --git a/README.md b/README.md index bcaf4bb..4219b07 100644 --- a/README.md +++ b/README.md @@ -11,14 +11,14 @@ The `docker-autoheal` binary may be executed via a native OS or via a Docker con | Variable | Default | Description | |:----------------------------:|:---------------------:|:--------------------------------------------------------------------------------------------------------------------------------------------------:| | **AUTOHEAL_CONNECTON_TYPE** | local | This determines how `docker-autheal` connects to Docker (One of: local, socket, http | -| **AUTOHEAL_CONTAINER_LABEL** | autoheal | This is the label (set to `true`) that `docker-autoheal` will monitor and remediate - or set to `all` to simply monitor all containers on the host | +| **AUTOHEAL_CONTAINER_LABEL** | not set | This is the container label that `docker-autoheal` will use as filter criteria for monitoring - or set to `all` to simply monitor all containers on the host | | **AUTOHEAL_STOP_TIMEOUT** | 10 | Docker waits `n` seconds for a container to stop before killing it during restarts | | **AUTOHEAL_INTERVAL** | 5 | Check container health every`n` seconds** | | **AUTOHEAL_START_DELAY** | 0 | Wait `n` seconds before first health check | | **AUTOHEAL_TCP_HOST** | localhost | Address of Docker host | | **AUTOHEAL_TCP_PORT** | 2375 | Port on which to connect to the Docker host | | **AUTOHEAL_TCP_TIMEOUT** | 10 | Time in `n` seconds before failing connection attempt | - +|