mirror of
https://github.com/containrrr/watchtower.git
synced 2025-12-14 06:06:38 +01:00
Merge pull request #42 from stffabi/upstream_SelfUpdateFix
Fix for watchtower self update
This commit is contained in:
commit
5902e9e0be
1 changed files with 2 additions and 3 deletions
|
|
@ -132,10 +132,9 @@ func (client dockerClient) StartContainer(c Container) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (client dockerClient) RenameContainer(c Container, newName string) error {
|
func (client dockerClient) RenameContainer(c Container, newName string) error {
|
||||||
|
bg := context.Background()
|
||||||
log.Debugf("Renaming container %s (%s) to %s", c.Name(), c.ID(), newName)
|
log.Debugf("Renaming container %s (%s) to %s", c.Name(), c.ID(), newName)
|
||||||
//return client.api.ContainerRename(c.ID(), newName)
|
return client.api.ContainerRename(bg, c.ID(), newName)
|
||||||
// no op
|
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (client dockerClient) IsContainerStale(c Container) (bool, error) {
|
func (client dockerClient) IsContainerStale(c Container) (bool, error) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue