How can I move a Docker container?

Well yes … usually you’d go like this:

docker save -o container-name.tar.gz container-name

then you transfer the tar-File to the destination server and import it again:

docker load -i container-name.tar.gz