Skip to content

Instantly share code, notes, and snippets.

@pkdiv
Last active September 24, 2025 18:03
Show Gist options
  • Select an option

  • Save pkdiv/15b8d935cf9e310b6ad1e76621436009 to your computer and use it in GitHub Desktop.

Select an option

Save pkdiv/15b8d935cf9e310b6ad1e76621436009 to your computer and use it in GitHub Desktop.
Docker Container Offline Pull
# Pull Image
docker pull <image-name>
# Save image to tar
docker save -o <filename>.tar <image-name>
# Load image in offline machine
docker load -i <filename>.tar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment