]
Xavier Coulon resolved ERT-216.
-------------------------------
Assignee: Roland Grunberg
Resolution: Done
Patch reviewed and merged
Running image, which has shell form of CMD needs to be enclosed in
quotes [EBZ#494555]
--------------------------------------------------------------------------------------
Key: ERT-216
URL:
https://issues.jboss.org/browse/ERT-216
Project: Eclipse Release Train
Issue Type: Task
Components: Linux Tools
Reporter: Friendly Jira Robot
Assignee: Roland Grunberg
Labels: Docker, bzira
Running image, which was build using dockerfile with CMD in shell form (for example
greyltc/lamp) needs to be enclosed in quotes.
Steps to reproduce:
* Pull image which was build using dockerfile with CMD in shell form (for example
greyltc/lamp from docker hub)
* In Docker Explorer right click that image -> Run
* Assert: command should be the same as running that image from command line
* FAIL: command is `/bin/sh -c start-servers; sleep infinity` instead of `/bin/sh -c
'start-servers; sleep infinity'`
Those missing quotes causes that container to stop right after it was started (which is
not desired)