Best of DockerApril 2023

  1. 1
    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.

  2. 2
    Article
    Avatar of communityCommunity Picks·3y

    The Complete Modern React Developer 2022

    Course covering the full stack development using React, Node.js, MongoDB, and PostgreSQL. Backend setup using Express.js or Nest.js. Includes tutorials for setting up local databases and using Docker. Frontend tests using React Testing Library and Cypress.

  3. 3
    Article
    Avatar of hnHacker News·3y

    TabbyML/tabby: Self-hosted AI coding assistant

    TabbyML/tabby is an opensource / on-prem alternative to GitHub Copilot. Tabby is still in the alpha phase, with no need for a DBMS or cloud service. The easiest way of getting started is using the docker image: # Create data dir and grant owner to 1000 (Tabby run as uid 1000 in container).

  4. 4
    Article
    Avatar of bytebytegoByteByteGo·3y

    EP57: How ChatGPT works technically

    The biggest, most comprehensive survey on APIs is open for a fourth year, with new questions on monetization, generative AI, and more. Take the survey and share how you work with APIs, the challenges you’re overcoming, and what you see for the future of APIs.

  5. 5
    Article
    Avatar of communityCommunity Picks·3y

    PHP CRUD Rest API, using Laravel, Composer, Postgres, Docker and Docker Compose

    Learn how to create a CRUD Rest API in PHP using Laravel, Composer, Postgres, Docker, and Docker Compose. Covers prerequisites, project creation, and step-by-step coding instructions.

  6. 6
    Article
    Avatar of communityCommunity Picks·3y

    Kubernetes quick tutorial

    This post provides a quick tutorial on how to create a basic Kubernetes example using JavaScript, Node.js, Docker, and Docker Compose. It covers the steps to create a simple Express server, Dockerize the application, and deploy it using Kubernetes. The tutorial also explains pods, deployments, and services in Kubernetes.

  7. 7
    Article
    Avatar of communityCommunity Picks·3y

    My Favorite Free Courses to Learn Docker and Containers in 2024

    Learn about the benefits of learning Docker and find free online courses to enhance your Docker skills.

  8. 8
    Article
    Avatar of communityCommunity Picks·3y

    Python CRUD Rest API, using: Django, Postgres, Docker and Docker Compose

    Learn how to create a CRUD Rest API in Python using Django and Docker. The post covers the step-by-step process of setting up the project, including creating a Django project, Dockerizing the application, and testing the endpoints.

  9. 9
    Article
    Avatar of pointerPointer·3y

    hocus-dev/hocus: 🪄 Spin up ready-to-code, disposable dev environments on your own servers. Self-hosted alternative to Gitpod and Github Codespaces.

    Hocus is a self-hosted alternative to Gitpod and GitHub Codespaces that allows you to spin up ready-to-code, disposable development environments on your own servers. It integrates with various Git providers and offers features like workspaces, prebuilds, project environment variables, VSCode integration, root access, and monorepo support.

  10. 10
    Article
    Avatar of communityCommunity Picks·3y

    Dockerize a Python Application

    Learn how to dockerize a Python application by creating a Dockerfile and running it with Docker Compose. Also, learn how to push the Docker image to Docker Hub.

  11. 11
    Article
    Avatar of phoenix-filesPhoenix Files·3y

    Elixir and Rust Is a Good Mix

    Elixir is designed to make using Rust and its package ecosystem trivial. Elixir and Rust is a good mix and is way more difficult to work with when you are manually using this via C.io. If you want to deploy your Phoenix LiveView app, then check out how to get started.

  12. 12
    Article
    Avatar of swcdSweetcode·3y

    How to Minimize Docker Container Image Size Using DockerSlim

    Using DockerSlim allows you to minimize Docker image size up to 30 times. It analyzes your Docker image’s contents and removes duplicate files, unused dependencies, and system libraries that the application doesn’t require to run. These approaches slim or remove layers with unnecessary binaries, libraries, files, and directories.

  13. 13
    Article
    Avatar of semaphoreSemaphore·3y

    Docker Logging: 7 Best Practices

    Docker Logging is an essential aspect of operating containers in a production environment. It provides the capability to track and troubleshoot your applications. To make logging work well in Docker containers, you need to log the app, the host computer, and the Docker service.

  14. 14
    Article
    Avatar of communityCommunity Picks·3y

    Dockerize a Python application

    This post provides a tutorial on how to dockerize a Python application. It covers the prerequisites, creating a Dockerfile, using Docker Compose, and pushing the image to Docker Hub.