mirror of
https://github.com/containrrr/watchtower.git
synced 2025-09-22 05:40:50 +02:00

* feat: check container config before restart * fix: only skip when hostconfig and config differ * fix: update test mocks to not fail tests * test: add verify config tests
7 lines
262 B
Go
7 lines
262 B
Go
package container
|
|
|
|
import "errors"
|
|
|
|
var errorNoImageInfo = errors.New("no available image info")
|
|
var errorNoExposedPorts = errors.New("exposed ports does not match port bindings")
|
|
var errorInvalidConfig = errors.New("container configuration missing or invalid")
|