Created
August 18, 2017 13:07
-
-
Save mareknovotny/42ba3a12896a22d9411049dc3cd4c78d to your computer and use it in GitHub Desktop.
Steps how to get and run docker container for failed windup-web-pr-builder
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#1 on jenkins vm (identify container id) and save container with git and all ready to build while running job | |
sudo docker commit <container-id> test-windup-web-pr # < this is temp docker image with saved status | |
#2 save it as tar archive for moving or later discovery | |
sudo docker save -o ./windup-web-pr-builder_1596.tar.gz test-windup-web-pr | |
#3 on your local or any host with docker | |
docker load -i <saved_docker_image> | |
#4 and run it for debugging | |
docker run -ti <name-of image> sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment