Posts

Showing posts from September, 2018

ECS

Image

Amazon Web Services Databases in Depth

Image
Amazon RDS

Using Docker on AWS

Using Docker on AWS

Building Applications Using Elastic Beanstalk

Image
Building Applications Using Elastic Beanstalk What is Elastic Beanstalk? Elastic Beanstalk is a service provided by AWS,  that provides a Managed Application Environment for building Highly Scaled Application It allows you to build and deploy cloud-based applications and services at scale. We can run this application in nearly any region or regions around the world. You can build your Application using nearly any Programming Language, as well as any Application or Service that has been encapsulated within a Docker Container.  Scalable Architecture: Elastic Beanstalk provides a scalable architecture , making it extremely easy to scale your application up or down , in order to handle more or less traffic . You can do that manually at any point in time, via either the Console , a command line utility , or the built - in API , or you can have your application scale automatically , as response to traffic demands, that come to your applic...

Computing - Vocabulary

Computing - Vocabulary encapsulate - enclose(something) in or as if in a capsule

Docker Deep Dive - Working with Secrets

Docker Deep Dive - Container Networking

Image
Docker Deep Dive - Container Networking Containers need to talk to each other. Sometimes they even need to talk to VMs and physicals and even the internet. On the flip side sometimes those VMs, physicals and the internet they need to talk back to containers. To help with that we have got a bunch of container networking options. Network Types in Docker Bridge Network: Sometimes we call this as single house networking.It's turned on by default. SO you have got a host and it's running docker right. It's got a built-in network called bridge or NAT in windows. Each container gets its own IP on the bridge network.They can all talk to each other. But containers on seperate bridges? That's a bit of a hassle because each one of this bridges is isolated, so these two we can see are isolated layer two networks and it would be the same even if they were on the same host. The only way to get in or out is to map ports to the host. This is ok but not very ...

Docker - Building a Secure Swarm

Image
notion:   an impulse or desire               a conception of or belief about something. quorum: the   smallest   number   of   people   needed   to be   present   at a   meeting   before it can officially   begin   and before   official   decisions   can be taken Docker - Building a Secure Swarm Swarm is the future of Docker Swarm is a secure cluster of Docker nodes Swarm hs two parts Secure Cluster part Orchestrator part What is a secure swarm cluster? Well at the highest level, it's a cluster of docker nodes. We got managers and workers and everything secure. So we have got mutual TLS where workers and managers mutually authenticate each other, and all of the network chat is encrypted. Plus the cluster stores encrypted, and it gets automatically distributed to all managers. And we can use labels to tag nodes and customize the cl...