Skip to content

Instantly share code, notes, and snippets.

@jamesmoriarty
Created January 28, 2020 06:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamesmoriarty/98d7fe6fa3803fab16281e3c7f9a8275 to your computer and use it in GitHub Desktop.
Save jamesmoriarty/98d7fe6fa3803fab16281e3c7f9a8275 to your computer and use it in GitHub Desktop.
Docker Image Copy Files
#!/bin/sh
# ./docker-copy a25dae391089 /bin/prometheus ./
id=$(docker create $1)
docker cp $id:$2 $3
docker rm -v $id
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment