Best of Containers2023

  1. 1
    Article
    Avatar of awstipAWS Tip·3y

    Mastering Docker: A Comprehensive Guide

    Docker is an open platform for developing, shipping, and running applications. It separates applications from infrastructure and allows for quick software delivery. Key Docker terms include images, containers, Dockerfiles, Docker Engine, Docker Hub, Docker registry, and Docker Compose. Virtual machines and containers differ in their approach and use cases, with VMs emulating an entire OS and containers sharing the host OS kernel.

  2. 2
    Article
    Avatar of awsplainenglishAWS in Plain English·3y

    10 Secrets to Improve Your Dockerfile

    Dockerfile is a powerful tool for building and deploying applications in Docker containers. There are a number of advanced features and best practices that may not be as well-known. We’ll explore 10 things you might not know about Dockerfile, including tips and tricks for optimizing your builds.

  3. 3
    Article
    Avatar of freecodecampfreeCodeCamp·3y

    How Docker Containers Work – Explained for Beginners

    Containers provide a portable and efficient way to package applications and their dependencies, ensuring consistency across various environments. The benefits they bring to software development is similar to the benefits brought to the global economy by the humble shipping container.

  4. 4
    Article
    Avatar of communityCommunity Picks·3y

    Why Developers Should Learn Docker and Kubernetes in 2024

    Developers should consider learning Docker and Kubernetes in 2024 due to their importance in the era of Microservices and Cloud Computing. Docker provides containerization, while Kubernetes offers orchestration and management of containers. Learning these tools can enhance a developer's knowledge and career prospects in the evolving tech industry.

  5. 5
    Article
    Avatar of spaceliftSpacelift·3y

    Docker Cheat Sheet – 36 Docker CLI Commands

    The command-line tool is used to interact with a Docker installation. In this article, we’ll provide a brief description for the majority of the main commands. You can use this list to learn more about Docker’s functionality, or simply find out how to use a particular feature.

  6. 6
    Article
    Avatar of medium_jsMedium·2y

    The Art of Crafting Dockerfile

    Learn about Dockerfile, its format, and key commands for building Docker images and containers.

  7. 7
    Article
    Avatar of communityCommunity Picks·3y

    The Ultimate Docker Cheat Sheet

    A Docker cheatsheet is a concise summary of commonly used Docker commands and their options. Cheatsheets are helpful for learning new tools and quickly looking up key concepts and commands. The post provides a list of basic Docker commands for managing images and containers.

  8. 8
    Article
    Avatar of btrprogBetter Programming·3y

    Developing Inside a Container

    The most well-known use case for Docker is deploying production services, such as application services or databases, in enterprise servers or cloud instances. Containers are lightweight and contain everything needed to run the application, so you do not need to rely on what is currently installed on the host. You can easily share containers while you work.

  9. 9
    Article
    Avatar of bytebytegoByteByteGo·3y

    EP71: CI/CD Pipeline Explained in Simple Terms

    This week’s system design refresher: Why Google and Meta Put Billion Lines of Code In 1 Repository? What does API gateway do?

  10. 10
    Article
    Avatar of bytebytegoByteByteGo·3y

    A Crash Course in Docker

    Docker is a container platform that simplifies deployment of applications in the cloud. It was created in 2013 and uses lightweight containerization to achieve isolation. Docker images are different from virtual machines as they share the host operating system kernel, making them more lightweight and portable. Kubernetes is not necessary to use Docker effectively.

  11. 11
    Article
    Avatar of awstipAWS Tip·3y

    Beginners guide to Docker

    The most popular way of creating a docker image is through a docker file. Docker allows you to share and run your project without worrying about the system configurations needed to run the project. This article explains basic Docker concepts and shows you how to create containers for your applications.

  12. 12
    Article
    Avatar of awstipAWS Tip·2y

    Kubernetes Architecture

    Kubernetes is a powerful open-source container orchestration platform that automates deployment, scaling, and management of containerized applications. It utilizes a master-worker node model and consists of components like kube-apiserver, etcd, kube-scheduler, kube-controller-manager, and cloud-controller-manager. Worker nodes have kubelet, kube-proxy, and a container runtime for executing and maintaining applications.

  13. 13
    Article
    Avatar of awsplainenglishAWS in Plain English·3y

    Docker 101: A Beginner’s Guide to Containerization

    Docker is a containerization platform that allows developers to create lightweight, portable and self-sufficient containers. Docker enables developers to package their applications along with all dependencies into a single unit, known as a container. Docker streamlines the deployment process, significantly reducing the time it takes to get your applications up and running.

  14. 14
    Article
    Avatar of awsplainenglishAWS in Plain English·3y

    Docker: Explained Simply for a 10-Year-Old — The Magic Box for Computer Programs

    Docker is an open-source platform for developing, shipping, and running applications within containers. It simplifies software deployment and allows for easy movement of containers. Key concepts in Docker include Docker files, Docker images, Docker containers, Docker Hub, Docker Daemon, and Docker Compose.

  15. 15
    Article
    Avatar of pointerPointer·3y

    DovAmir/awesome-design-patterns: A curated list of software and architecture related design patterns.

    Software design pattern- A general, reusable solution to a commonly occurring problem within a given context in software design. It is a description or template for how to solve a problem that can be used in many different situations. This website accompanies the book Reactive Design Patterns by Roland Kuhn.

  16. 16
    Article
    Avatar of communityCommunity Picks·3y

    Basics of Docker: Why, What and How

    A VM requires a new operating system on its own on top of the physical machine and requires a dedicated amount of hard disk, CPU and memory for itself. This is not much performant, as the resources would be wasted if not used by the virtual machine. A Dockerfile is a document that contains all such commands a user requires to assemble an image.

  17. 17
    Article
    Avatar of communityCommunity Picks·2y

    Next.js app deployed with Docker - does it make sense?

    Learn how to dockerize a Next.js application and consider the advantages and use cases of using Docker with Next.js. Docker provides better security, dependability, faster deployment procedures, and simpler application management. While Docker may not be necessary for a single Next.js application, it becomes relevant when running multiple services.

  18. 18
    Article
    Avatar of devtoDEV·3y

    Docker Node.js and MongoDB example

    Docker provides lightweight containers to run services in isolation from our infrastructure so we can deliver software quickly. In this tutorial, I will show you how to dockerize Nodejs Express and MongoDB example using Docker Compose. The problem is to containerize a system that requires more than one Docker container.

  19. 19
    Article
    Avatar of communityCommunity Picks·3y

    6 Must-Know Docker Compose Tips

    Docker Compose looks for a Dockerfile named Dockerfile in the root directory of the context. If you're working with environment variables, use the env_file option instead of hardcoding them directly in the Compose file. If the container stops for any reason, docker Compose will automatically restart it.

  20. 20
    Article
    Avatar of dzDZone·3y

    Top Three Docker Alternatives To Consider

    Podman is a daemonless, open-source, Linux-native container engine that is considered one of the best alternatives for Docker. Podman, Kubernetes, Openshift, LXD, Docker Swarm, BuidKit, and Mesos are some of the popular Docker alternatives available in the market today.

  21. 21
    Article
    Avatar of awsplainenglishAWS in Plain English·3y

    Docker Simplified

    Docker is an open-source platform that automates the deployment and scaling of applications. It packages applications and their dependencies into containers, ensuring consistent behavior across different environments. Docker was created by Solomon Hykes to improve the deployment process and overcome the challenges of virtual machines. Its advantages include containerization, portability, isolation, efficiency, scalability, and version control. Docker operates on a client-server architecture and follows a step-by-step process of image creation, building, distribution, container creation, and running.

  22. 22
    Article
    Avatar of communityCommunity Picks·3y

    When to use and when not to use Docker?

    Docker is a tool that allows developers to bundle all the ingredients of software into unified boxes called Docker containers. It is useful for development teams that are not set in stone, software that runs in different environments, software with many dependencies, scalable applications, and projects that may require changing hosting infrastructure. However, Docker may not be the best choice for desktop applications, small and simple projects, one-person development teams, applications that need to be optimized for speed, projects with MacBook users, and teams that don't know how to use Docker properly.

  23. 23
    Article
    Avatar of changelogChangelog·3y

    Docker on MacOS is slow and how to fix it

    Docker on MacOS is slow and how to fix it. The only viable option to have a decent performance and a good DX are: VirtioFS. If you are VI/Emacs user, all you need is your editor and tools in a container, or if you want a minimal Linux GUI env, take some inspiration.

  24. 24
    Article
    Avatar of bytebytegoByteByteGo·2y

    EP88: Linux Boot Process Explained

    The article explains the Linux boot process, the commonly used types of queues, and provides an overview of Kubernetes and its benefits in container management.

  25. 25
    Article
    Avatar of redislabsRedis·3y

    Microservices and Containers Explained… Using LEGOs

    Microservices are small, independent components that you can combine to build larger applications. This is a stark departure from the traditional monolithic architecture, where an application is developed as a single unit. Microservices can communicate with each other through APIs, which enables the application to function as a cohesive whole.