We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32588a7 commit 22fa18aCopy full SHA for 22fa18a
1 file changed
lib/container.sh
@@ -139,7 +139,10 @@ container::start() {
139
140
# swarm should be started last so we know everything is up
141
backoff container::_start_swarm_container
142
- docker ps | awk '/swarm/ { print $1 }' | xargs docker restart
+ # currently @henrymollman does not understand why restarting swarm works
143
+ # but without this line docker-listener will time out getting events
144
+ # and the stream will close. this is an intermittent error however
145
+ docker restart swarm
146
}
147
148
# Stops all dock container services
0 commit comments