Skip to content
Snippets Groups Projects
Commit e6335765 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Merge branch 'issue-55' into '1.6.x'

[dock] Closes #55 by restricting the image search to images with the name containing `beat.env.`

See merge request !23
parents 25bd9ba7 24045512
No related branches found
No related tags found
2 merge requests!32Merge development branch 1.6.x,!23[dock] Closes #55 by restricting the image search to images with the name containing `beat.env.`
Pipeline #
...@@ -264,7 +264,7 @@ class Host(object): ...@@ -264,7 +264,7 @@ class Host(object):
logger.error("Failed to retrieve the list of docker images, reason:\n\n%s", stderr) logger.error("Failed to retrieve the list of docker images, reason:\n\n%s", stderr)
return (environments, db_environments) return (environments, db_environments)
images = [ x for x in stdout.split('\n') if x.find('beat') >= 0 ] images = [ x for x in stdout.split('\n') if x.find('beat.env.') >= 0 ]
for image in images: for image in images:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment