New volume created on each container startup #88
-
I do use fairly standard docker-compose file:
While service itself works fine and backups are created correctly when inspecting the docker container I see that it has 2 mounts created:
While the first one is totally expected, the other one seems to be re-created on each container startup and remains empty. This inevitably results in trashing Is that result of my setup or can it be improved in container itself? Thanks for letting me know! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Okay, upon further investigation I realized that backup container actually specifies two anonymous volumes:
After adding this volume to docker compose as named volume it works as expected:
Still I think the docker compose snipped in readme should be updated to avoid this by default 😉 |
Beta Was this translation helpful? Give feedback.
Okay, upon further investigation I realized that backup container actually specifies two anonymous volumes:
After adding this volume to docker compose as named volume it works as expected:
Still I think the docker compose snipped in readme should be updated to avoid this by default 😉