We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 838eaf4 commit a131989Copy full SHA for a131989
pythonic.el
@@ -202,6 +202,9 @@ print(json.dumps(yaml.safe_load(open(sys.argv[-1], 'r'))))
202
(let* ((filename (pythonic-get-docker-compose-filename project))
203
(struct (pythonic-read-docker-compose-file filename))
204
(volumes (pythonic-get-docker-compose-volumes struct))
205
+ ;; FIXME: Each service can have many volumes. It
206
+ ;; should appears once in the selection and all volumes
207
+ ;; should be added to the alias list.
208
(volume (if (< 1 (length volumes))
209
(assoc (completing-read "Service: " (mapcar 'car volumes) nil t) volumes)
210
(car volumes)))
0 commit comments