Closed etolbakov closed 1 year ago
BTreeMap didn't workout well because it sorts keys in alphabetic order. Had to use LinkedHashMap to preserve the order in which container appear in the docker-compose.yaml.
BTreeMap
LinkedHashMap
Aims to fix https://github.com/etolbakov/excalidocker-rs/issues/35
Results are shown below: (spark containers renamed in reverse alphabetical order)
(hive containers renamed in reverse alphabetical order)
Addresses https://github.com/etolbakov/excalidocker-rs/issues/37
should address https://github.com/etolbakov/excalidocker-rs/issues/15
BTreeMap
didn't workout well because it sorts keys in alphabetic order. Had to useLinkedHashMap
to preserve the order in which container appear in the docker-compose.yaml.Aims to fix https://github.com/etolbakov/excalidocker-rs/issues/35