Skip to content
Yancey edited this page Aug 18, 2017 · 3 revisions

FAQ

How to Push Docker Image to PaddleCloud Private Registry

  1. Add bootstrapper:5000 insecure-registries to Docker.
  2. Linux: Edit /etc/docker/daemon.json: bash { "insecure-registries" : ["bootstrapper:5000"] }
  3. MacOSX: You can add bootstrapper:5000 on your GUI panel, Preferences->daemon->insecure-registryies
  4. Append <bootstrapper-ip> bootstrapper into your host file: /etc/hosts.(Please contact PaddleCloud administrator to fetch '')
  5. Execute docker tag <your image name> bootstrapper:5000/<your image name>
  6. Execute docker push bootstrapper:5000/<your image name>
Clone this wiki locally