grammarly / rocker-compose

Docker composition tool with idempotency features for deploying apps composed of multiple containers.
Other
407 stars 26 forks source link

rocker-compose remove volumes if dependant container re-creates, Docker 1.9 #35

Closed valch85 closed 8 years ago

ybogdanov commented 8 years ago

Same problem as https://github.com/grammarly/rocker/issues/51

containers:
  a:
    volumes: /data
  b:
    volumes_from: a

When b changes, rocker-compose will remove and create the container. While removing b, Docker 1.9 removes the /data volume of a.