Skip to content

Instantly share code, notes, and snippets.

@mareknovotny
Created August 18, 2017 13:07
Show Gist options
  • Save mareknovotny/42ba3a12896a22d9411049dc3cd4c78d to your computer and use it in GitHub Desktop.
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
#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