Docker Compose

Define and run multi-container applications with Docker (by docker)

Docker Compose Alternatives

Similar projects and alternatives to Docker Compose

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better Docker Compose alternative or higher similarity.

Docker Compose reviews and mentions

Posts with mentions or reviews of Docker Compose. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-09-28.
  • Containers Demystified 🐳🤔
    5 projects | dev.to | 28 Sep 2023
    Running dockers from the command line with docker run is useful for quick testing but not commonly used in practice. The better way to run one or more dockers on a single server with all of the changes and requirements documented is to use Docker Compose. Docker Compose uses a YAML spec to define which containers to run with their required configurations and aligns with Infrastructure as Code (IaC) best practices since it can be committed to a code repository.
  • How to use PostgreSQL to store and query vector embeddings
    2 projects | dev.to | 26 Sep 2023
    Docker Compose also installed on your system.
  • The Data Engineering Docker-Compose Starter Kit
    4 projects | dev.to | 22 Sep 2023
    Hint: If you don’t know what Docker and Docker Compose are, now’s the perfect time to go find out.
  • Golang testing using docker services via dockertest
    3 projects | dev.to | 3 Sep 2023
    Whenever I am using a service backed by postgres, mongo, mysql or other services that are not part of my codebase, I generally create a docker-compose file so that my development environments are isolated. Then when I'm working in a particular project, all I have to do is docker-compose up -d to get going, and docker-compose down when I'm finished for the day.
  • Install Docker on Remote Server using Ansible
    2 projects | dev.to | 28 Aug 2023
    --- - name: Add Docker GPG apt Key ansible.builtin.apt_key: url: https://download.docker.com/linux/ubuntu/gpg state: present - name: Add repository into sources list ansible.builtin.apt_repository: repo: deb [arch=amd64] https://download.docker.com/linux/ubuntu {{ ansible_lsb.codename }} stable state: present filename: docker - name: Install Docker 23.0.1-1 ansible.builtin.apt: name: - docker-ce=5:23.0.1-1~ubuntu.22.04~jammy - docker-ce-cli=5:23.0.1-1~ubuntu.22.04~jammy - containerd.io state: present update_cache: true - name: Setup docker user ansible.builtin.user: name: docker groups: "docker" append: true sudo_user: yes - name: Install Docker module for Python ansible.builtin.pip: name: docker - name: Install Docker-Compose&Set Permission ansible.builtin.get_url: url: https://github.com/docker/compose/releases/download/1.29.2/docker-compose-Linux-x86_64 dest: /usr/local/bin/docker-compose mode: '755' - name: Create Docker-Compose symlink ansible.builtin.command: cmd: ln -s /usr/local/bin/docker-compose /usr/bin/docker-compose creates: /usr/bin/docker-compose - name: Add private registry ansible.builtin.template: src: daemon.j2 dest: /etc/docker/daemon.json mode: preserve - name: Restart Docker ansible.builtin.service: name: docker state: restarted enabled: true
  • Docker MERN stack example
    3 projects | dev.to | 22 Aug 2023
    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 MERN stack Application (React + Node.js + Express + MongoDB) example using Docker Compose and Nginx.
  • K8S Quickstart & Helm
    4 projects | dev.to | 21 Aug 2023
    Helm provides you the ability to install applications with a single command. A chart can contain other charts as dependencies. You can consequently deploy an entire stack with Helm. You can use Helm like docker-compose but for Kubernetes.
  • Docker and Containers: Simplifying Software Deployment
    2 projects | dev.to | 31 Jul 2023
    Docker Compose Official Documentation: https://docs.docker.com/compose/
  • Flask Application Load Balancing using Docker Compose and Nginx
    2 projects | dev.to | 30 Jul 2023
    Docker Compose allow Docker user to run multiple containers for a single application. Docker Compose will configure the application containers as services. You will use Docker Compose to configure the Flask application and Nginx load balancer containers. In this tutorial, you will first build a Flask web application. You will then implement Flask application load balancing using Docker Compose and Nginx.
  • How to Deploy a Multi-Container React.js and Node.js Application With Docker Compose
    5 projects | dev.to | 19 Jul 2023
    Docker Compose is a powerful Docker tool for developing and running multi-container Dockerized applications. Docker is an open-source platform for developing and running applications in an isolated environment known as a container. A container is a standalone executable package that contains the libraries, source code, and dependencies needed to run an application.
  • A note from our sponsor - SonarLint
    www.sonarlint.org | 29 Sep 2023
    Up your coding game and discover issues early. SonarLint is a free plugin that helps you find & fix bugs and security issues from the moment you start writing code. Install from your favorite IDE marketplace today. Learn more →

Stats

Basic Docker Compose repo stats
361
30,568
9.5
1 day ago
Clean code begins in your IDE with SonarLint
Up your coding game and discover issues early. SonarLint is a free plugin that helps you find & fix bugs and security issues from the moment you start writing code. Install from your favorite IDE marketplace today.
www.sonarlint.org