Best of DockerJuly 2022

  1. 1
    Article
    Avatar of vscodeVisual Studio Code·4y

    The VS Code Server

    The Visual Studio Code Server (private preview) is available now. It lets you use VS Code locally to develop applications "remotely" on the Windows Subsystem for Linux (WSL), in Docker containers, and on remote physical or virtual machines you manage over SSH. This is just the first step along the path towards a fully unified code manage that lets you manage both the desktop and the server.

  2. 2
    Article
    Avatar of communityCommunity Picks·4y

    Podman vs Docker: What are the differences?

    Podman is a Red Hat product designed to build, manage, and run containers with a Kubernetes-like approach. Docker is the standard containerization tool for almost a decade. The two technologies have fundamental differences but are also perfectly suited to work together. Podman is the default container engine in RedHat 8 and CentOS 8.

  3. 3
    Article
    Avatar of systemweaknessSystem Weakness·4y

    Dockerize a MERN Stack app for Production with Security in Mind (Part II)

    This post is the 2nd part of a two part series that covers how to make a MERN stack application production-ready with security in mind. The first part of this series was more of a theoretical post to grasp the basic concepts of what we want to achieve.

  4. 4
    Article
    Avatar of systemweaknessSystem Weakness·4y

    Dockerize a MERN Stack app for Production with Security in Mind (Part I)

    Dockerize a MERN Stack app for Production with Security in Mind (Part I) Securing a NodeJS application with Docker and Nginx. The first part of a two-part series that covers how to Dockerize an existing MERN stack application and how to make it ready for production. We are going to focus on availability, reliability, and security.

  5. 5
    Article
    Avatar of awstipAWS Tip·4y

    Docker Commands for Beginners

    The docker run command is meant to run the container. To run a container, you need to include only the image name. You can start multiple containers of same OS ubuntu by running the run command. Docker automatically generates a container name mix of numbers and letters. The command for running a container with a specific name is:- name container_name docker_image.

  6. 6
    Article
    Avatar of dzDZone·4y

    The Best Infrastructure as Code Tools for 2022

    IaC allows administrators to automatically provisioning IT infrastructure and maintaining the infrastructure always at the desired state. It also allows developers to instantly deploy test environments to check out new features of apps while testers can run scripts on replicas of production environments. The code handles everything, every change is tracked and audited.

  7. 7
    Article
    Avatar of itsfossIt's Foss·4y

    Umbrel: Unique Linux for Self Hosting Open Source Software

    Umbrel is an open source operating system for self-hosting. It has a nice web GUI and enables easy installation of containerized web services with a one-click install. This is perfect if you want a homelab setup with open source software for personal usage.

  8. 8
    Article
    Avatar of dzDZone·4y

    Get Started With Kafka and Docker in 20 Minutes

    Kafka runs on the platform of your choice, such as Kubernetes or ECS, as a cluster of one or more Kafka nodes. A Kafka cluster will be initialized with zero or more topics, which you can think of as message channels or queues. Create the Dockerfile alongside the other three files that were just created and add the following: Dockerfile. Save and close. Subsequent commands will be run in this folder.

  9. 9
    Article
    Avatar of jetbrainsJetBrains·4y

    IntelliJ IDEA 2022.2 Is Out!

    IntelliJ IDEA 2022.2 is available, bringing a range of noteworthy upgrades and refinements to the IDE. This new version includes multiple quality improvements to the remote development Beta, making its functionality sleeker and more stable to work with. You can download the new version from our website, update directly from the IDE, update via IntelliJIDEA 2022. The new version also supports the features introduced in Kotlin 1.

  10. 10
    Article
    Avatar of smashingSmashing Magazine·4y

    Using Nothing But Docker For Projects — Smashing Magazine

    Using only Docker to build and run applications and commands removes the need for previous knowledge in some tool or programming language. This way, you can run any Maven and Java commands without having to install Java or Maven. Using Docker for Running The Application’s Dockerfile is where this article starts. The book is a practical guide to optimizing and delivering high-quality images.

  11. 11
    Article
    Avatar of devgeniusDev Genius·4y

    Create Docker NGINX Image and Push to AWS ECR

    In this scenario, we were asked to use Nginx to deploy our website. We will pull the latest version of Nginx from the Docker registry. Next, we will create our Dockerfile & index.html file in the same directory. Finally, we’ll create a Docker container from our new image using the following command.