Merge pull request #1972 from yannh/docker-restarted
Docker module: restarted should update the container when necessary
This commit is contained in:
commit
d907f889a3
1 changed files with 4 additions and 0 deletions
|
@ -1659,6 +1659,10 @@ def restarted(manager, containers, count, name):
|
||||||
|
|
||||||
containers.refresh()
|
containers.refresh()
|
||||||
|
|
||||||
|
for container in manager.get_differing_containers():
|
||||||
|
manager.stop_containers([container])
|
||||||
|
manager.remove_containers([container])
|
||||||
|
|
||||||
manager.restart_containers(containers.running)
|
manager.restart_containers(containers.running)
|
||||||
started(manager, containers, count, name)
|
started(manager, containers, count, name)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue