Best of DockerMay 2022

  1. 1
    Article
    Avatar of hashnodeHashnode·4y

    The Complete Modern React Developer 2022

    This course will give you the skills and knowledge to become a Software Developer across the full stack. We will be building a super basic Twitter clone that has CRUD functionality for posting, reading and deleting tweets. In this section you will learn how to setup a Node backend using both Express.js and Nestjs. And as a bonus you will also learn some DevOps when we put a MongoDB and Postgres database inside of a Docker container.

  2. 2
    Article
    Avatar of dzDZone·4y

    Your Old Laptop Is Your New Database Server

    In times of Docker containers, configuring a machine to run server software is extremely easy. In this article, I’ll show you how to take advantage of that old laptop by installing Ubuntu Server, Docker, and a MariaDB database with all the configurations needed to have it always available.

  3. 3
    Article
    Avatar of hnHacker News·4y

    What are your Most Used Self Hosted Applications?

    Self Hosted author shares his most used self hosted applications. Nginx Proxy Manager is the backbone of his self hosted network. I use Filebrowser to quickly edit, view and move files. I like the idea of privately posting personal notes, photos, videos and project ideas on a micro-blog style platform.

  4. 4
    Article
    Avatar of semaphoreSemaphore·4y

    Dockerizing a Node.js Web Application

    Docker is an open platform for building, shipping and running distributed applications. We’ll be using a basic Express application as our example Node.js application to run in our Docker container. We will write an addressbook API that stores people’s names in a database.

  5. 5
    Article
    Avatar of semaphoreSemaphore·4y

    Dockerizing a PHP Application

    In this tutorial, you will learn what Docker is and how to use it to create a Dockerize a PHP applications for easy deployment. You’ll learn how to using Continuous Integration and Deployment to build and deploy the image on Heroku. You will learn the ins and outs of combining Docker with PHP to test your application, build a container and deploy it.

  6. 6
    Article
    Avatar of hnHacker News·4y

    How a Single Raspberry Pi made my Home Network Faster

    Raspberry Pi project Pi Hole is the gatekeeper to our home network. The Pi Hole blocks Ads, Malware, and overreaching metrics collection network-wide. Since I switched to SimpleAnalytics to stop tracking people on our websites I thought to apply the same principle to our network. I am so impressed with the performance and security of the Pi Hole project.

  7. 7
    Article
    Avatar of hashnodeHashnode·4y

    Dockerizing Your Node.js Application

    Docker has revolutionized the way we build, package, and ship software. Docker has made it possible for developers to package their applications and share them with others. Many emerging startups keep Docker technology as their base. Today we will walk through a simple tutorial demonstrating how you can build a simple ‘Hello World’ application.

  8. 8
    Article
    Avatar of newstackThe New Stack·4y

    How to Manage your Docker Containers with DockStation

    DockStation is a desktop client that makes container management much easier. DockStation is available for Linux, macOS, and Windows and can be used for both personal and startup usage. With DockStation, you’ll find features like: Manage both services and containers.

  9. 9
    Article
    Avatar of rubylaRUBYLAND·4y

    A Small Tip to Reduce Your Docker Images Size by Almost Half

    Docker image size went from 400MB to 170MB, less than half! The problem is that this does not work! The image size is the same as if we did not remove build-base . Let's discover why. The size can only increase or stay the same from one layer to another. Don’t give up, we got this!