Skip to content

Instantly share code, notes, and snippets.

@AhmedKamal20
Last active November 14, 2018 16:12
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 AhmedKamal20/c3de99cfa94fefa9bda9a37ab114d026 to your computer and use it in GitHub Desktop.
Save AhmedKamal20/c3de99cfa94fefa9bda9a37ab114d026 to your computer and use it in GitHub Desktop.
Export & Import Docker Images From Docker-Compose File Offline

To Export

docker save -o services.tar `docker-compose config | awk '{if ($1 == "image:") print $2;}' | sort | uniq | xargs`

To Import

docker load -i ./services.tar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment