0 votes
in Docker by
Will you lose your data, when a docker container exists?

1 Answer

0 votes
by

No, you won’t lose any data when Docker container exits. Any data that your application writes to the container gets preserved on the disk until you explicitly delete the container. The file system for the container persists even after the container halts.

...