Reputation: 1419
We have installed Ephesoft on a docker.
One file (in particular
dcma-batch.properties
in
Ephesoft/Application/WEB-INF/classes/META-INF/dcma-batch/
is reset after the docker exits and it is relaunched. Is there any way of stopping this?
Upvotes: 0
Views: 45
Reputation: 529
If you restart a docker container, all data is lost, and it is reset to the initial image.
If you want persistent storage, look into docker volumes here: https://docs.docker.com/engine/admin/volumes/
Upvotes: 1