Quick Start
Create a repository
Create a repository on the interface by clicking the new button Create Repository at the container management interface or in the menu Initialize is placed in the navigation bar.
Once created, repository will have a corresponding URI (this URI will be used to push or pull image in the following steps):
cr-hn-1.bizflycloud.vn/<unique-id>/<repository-name>
* Tips: If you have memorized the format of Uri you can skip this step, when push image, the repository will be automatically created
Login
Use Docker Cli
docker login cr-hn-1.bizflycloud.vn
Push image on Bizfly Cloud
Tag your image to Uri to Bizfly Cloud, for example: cr-hn-1.bizflycloud.vn/c9e4fdedcbe641cf90bb1f58c0e641a8/my-image:latest
docker tag my-image:latest cr-hn-1.bizflycloud.vn/c9e4fdedcbe641cf90bb1f58c0e641a8/my-image:latest
Then execute the push command
docker push cr-hn-1.bizflycloud.vn/c9e4fdedcbe641cf90bb1f58c0e641a8/my-image:latest
Pull image from Bizfly Cloud to your computer
docker pull cr-hn-1.bizflycloud.vn/c9e4fdedcbe641cf90bb1f58c0e641a8/my-image:latest