Posts

Showing posts with the label docker

AWS Training for Beginners - Day 3

Image
  Previous posts in this series are Day 1 and Day 2 . Youtube video of this post - Day 3 AWS Hands-on   It's time to do some Hands-on.   If you do these steps and then remove the resources in AWS then the  overall cost incurred will be less than 1 USD. Create a free AWS account    ( linked with credit card usually)   And login to the  AWS console -  https://console.aws.amazon.com Understand AWS S3 with an example   Now next to try to understand a very common and easy AWS service - Simple Storage Service (S3)   S3 has buckets (similar to Folders in your computer). And we can control level of access.   Once we have public access enabled, S3 will provide a Public URL to access from anywhere. Created a bucket " aws -training-test-bucket-12345". This name is bit lengthy :) to maintain like a unique name across all buckets in S3; a rule imposed in AWS. Do a s imple test in Linux terminal. wget https://aws-training-test-bucket-...

Resolution - Not able to install Docker CE on Windows 10

Windows 10 Professional is one of the platform options for installing Docker CE. Other options are Windows 10 Enterprise and Windows Server 20xx. At first installation seems to be easy and you might have looked in Docker website. Issue: "Installation failed: one pre-requisite is not fulfilled. Docker for Windows requires Windows 10 Pro or Enterprise version <build number>, or Windows Server 2016 RTM to run." Resolution Steps: 1. Check your Windows build number      Press Windows key and type "winver". Now note down your build number.      And check with windows 10 build number required for Docker installation.      Typically Docker 18 CE required a build number of 14353 or more. 2. One option is to install a older version of Docker CE.       https://docs.docker.com/docker-for-windows/release-notes/   3. If you want to stick with latest version of Docker, do the following steps :-     a. Make sure you have a...