Last active
January 7, 2016 02:19
-
-
Save nooptr/cd2e8997e9465fdebebc to your computer and use it in GitHub Desktop.
GCPの他のプロジェクトからイメージを使う方法 ref: http://qiita.com/thangnv/items/da4e719efd83471a3ca8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gcloud config set project <project-id-of-project-2> | |
gcloud config list |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gcloud compute instances create <name-of-new-instance> \ | |
--image <name-of-your-image-from-project-1> \ | |
--image-project "<project-id-of-project-1" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment