Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix crash caused by incorrectly appended volume strings
Docker volumes are supposed to be a list in the form of [ '<path>:<bind>', '<path>:<bind>' ] Current parsing code parses this correctly but zeros out self.volumes and initializes it again in the form of [ '<path>', '<path>', '<path' ] This breaks the parser if volumes is parsed again as it is expecting <path>:<bind> (a specific example is rebuild)
- Loading branch information