Docker Checkpoint is an experimental feature of the Docker engine which allows creating checkpoints from a running container, and starting/restarting containers from previously created checkpoints.
Questions tagged [docker-checkpoint]
4 questions
9
votes
1 answer
Docker checkpoint fails with SQL Server container
After starting a Microsoft SQL Server (on Linux) container from scratch...
$ docker run -e 'ACCEPT_EULA=Y' -e 'SA_PASSWORD=Pa$$word' -p 1433:1433 \
-d --name mssql microsoft/mssql-server-linux
... creating a Docker checkpoint ...
$…

Max
- 9,220
- 10
- 51
- 83
1
vote
1 answer
Rename a Docker Checkpoint
Is it possible to rename a docker checkpoint after it has been created? It seems like you should be able to, given that you can rename a container. However, I can't find any information or questions related to it.
I would like to be able to create a…

Bryce
- 197
- 1
- 1
- 13
0
votes
1 answer
Is there something like save and restore snapshots in docker
I love docker and especially for complex CI environments it is just amazing.
The one thing that I really miss when working with Docker compared to a Virtual Machine is the ability to
save and restore snapshots of the container and I was wondering…

doberkofler
- 9,511
- 18
- 74
- 126
0
votes
1 answer
Cannot load a saved '.h5' checkpoint file into a python app, when deploying into Heroku
I have been trying to create a machine learning app using Python. In that case I need to import a pre-trained model stored as checkpoint-1.111.h5 file in the repository. But I am unable to import that model when deploying the code into Heroku. The…

Debparna Biswas
- 13
- 1
- 3