Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

docker image convert to tar.gz

docker save myimage:latest | gzip > myimage_latest.tar.gz
 or
docker save -o nginx-all.tar nginx # All image of nginx convert into tar
 or 
docker save -o nginx.tar nginx:latest # Latest image of nginx convert into tar 
 
# Load images
docker load < myimage_latest.tar.gz
 or 
docker load --input nginx.tar
Comment

PREVIOUS NEXT
Code Example
Shell :: remove a file from git commit 
Shell :: phpall version extension installation command on centos 7 
Shell :: shell trim 
Shell :: ffmpeg gif images 
Shell :: enzyme npm install 
Shell :: add remote branch git 
Shell :: install wsl2 windows 10 pro 
Shell :: switch from npm to yarn 
Shell :: pacman uninstall 
Shell :: port kill masocs 
Shell :: hibernate command in windows 10 stackoverflow 
Shell :: signaling init process caused permission denied 
Shell :: bash string length 
Shell :: display group of username mac 
Shell :: node js 16 install ubuntu 20.04 
Shell :: check ssh connection history linux 
Shell :: mac xterm download 
Shell :: git update 
Shell :: Deleting or removing a directory or folder 
Shell :: git clone using ssh key from gitlab 
Shell :: pupeteer install ubuntu 
Shell :: linux decode base64 string 
Shell :: cloning a repository that says not found 
Shell :: set executable permissions linux 
Shell :: how to remove dpkg package in ubuntu 
Shell :: move all files in a directory linux 
Shell :: add file to gitignore 
Shell :: how to install deb file in kali linux 
Shell :: turn redis off 
Shell :: stop nginx server 
ADD CONTENT
Topic
Content
Source link
Name
4+8 =