how to export docker image
#!/bin/bash docker export hogehoge_app > hogehoge_app.tar # import # cat hogehoge_app.tar | docker import - hogehoge/app:X.X # commit (enable to override existed image) # docker commit container hogehoge/app:X.X