mirror of
				https://github.com/moby/moby.git
				synced 2022-11-09 12:21:53 -05:00 
			
		
		
		
	 f93fee5f48
			
		
	
	
		f93fee5f48
		
	
	
	
	
		
			
			Tweaking for Hugo Updating the Dockerfile with new sed; fix broken link on Kitematic Fixing image pull for Dockerfile Removing docs targets Signed-off-by: Mary Anthony <mary@docker.com>
		
			
				
	
	
	
	
		
			1.7 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.7 KiB
		
	
	
	
	
	
	
	
Google Cloud Platform
QuickStart with Container-optimized Google Compute Engine images
- 
Go to Google Cloud Console and create a new Cloud Project with Compute Engine enabled 
- 
Download and configure the Google Cloud SDK to use your project with the following commands: $ curl -sSL https://sdk.cloud.google.com | bash $ gcloud auth login $ gcloud config set project <google-cloud-project-id>
- 
Start a new instance using the latest Container-optimized image: (select a zone close to you and the desired instance size) $ gcloud compute instances create docker-playground \ --image container-vm \ --zone us-central1-a \ --machine-type f1-micro
- 
Connect to the instance using SSH: $ gcloud compute ssh --zone us-central1-a docker-playground docker-playground:~$ sudo docker run hello-worldHello from Docker. This message shows that your installation appears to be working correctly. ... 
Read more about deploying Containers on Google Cloud Platform.