supervisor VS Docker Compose

Compare supervisor vs Docker Compose and see what are their differences.

supervisor

Supervisor process control system for Unix (supervisord) (by Supervisor)

Docker Compose

Define and run multi-container applications with Docker (by docker)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
supervisor Docker Compose
36 381
8,188 32,150
1.0% 1.3%
5.2 9.6
11 days ago about 12 hours ago
Python Go
GNU General Public License v3.0 or later Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

supervisor

Posts with mentions or reviews of supervisor. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-09-09.
  • An Internet of PHP
    9 projects | news.ycombinator.com | 9 Sep 2023
    What I went with was having both a web server (Apache/Nginx) and PHP-FPM in the same container image, held together by Supervisor: http://supervisord.org/

    In my case, the Dockerfile looks a bit like the following:

      # Whatever base web server image you want, Debian/Ubuntu based here
  • Private Python Packages With devpi
    4 projects | dev.to | 1 Jul 2023
    As you can see there are several methods of running devpi server including cron, launchd (OSX service), nginx, Windows service, and supervisord. It also has a systemd service file which we can use to manage the service easily as Ubuntu uses it for primary service management. First off though we're going to need a proxy script to ensure that devpi is running in the virtual environment:
  • How can I get a lisp image to run in the background?
    2 projects | /r/lisp | 23 Jun 2023
    If it's a linux box you can make it a systemctl service, or you could use http://supervisord.org/.
  • Have you convinced anyone to use Nix or NixOS? Friends? Coworkers?
    5 projects | /r/NixOS | 16 Apr 2023
    I convinced (previous) $dayjob to use it. It (nix) kind of hung around in the background with the team that used haskell for awhile, but became prime time when we needed to support a range of VMs running within client infrastructure that were in reality just running various python scripts under supervisord (http://supervisord.org/). The range of client machines (redhat, centos, debian, ubuntu all of different releases) with differing versions of python and supervisord were driving our support and devops teams crazy (but in a weird way - they thought they were being productive, and really enjoyed tweaking things to work with additional varieties of os...). Additionally, having to work around some minor pain points of supervisord (adding and removing config files and not interrupting running services) lead to the realisation that there was a perfectly good service manager at the bottom of the modern versions of these systems (systemd) and that nixos was just a nix wrapper around this systemd and it would only restart what actually changed...
  • Design of GNU Parallel
    3 projects | news.ycombinator.com | 19 Mar 2023
    Here's more information about the configuration file format, in case anyone is curious: http://supervisord.org/configuration.html

    My problem is that it's not always immediately clear how software that would normally run as a systemd service could be launched in the foreground instead. It usually takes a bit of digging around.

  • How We Built an Application to Test Student Docker Images for Database Systems University Course
    6 projects | dev.to | 24 Feb 2023
    This post is structured as follows: The first chapter Requirements and Design, describes the requirements for such an application, defines its processes, breaks it down into logical components, and proposes a data model. The second chapter Implementation, provides an introduction to key implementation issues, such as implementing asynchronous tasks and LDAP authentication. It also showcases the usage of Docker with Python SDK in the project, including network configuration, and describes the deployment configuration using supervisord. The final chapter summarizes the efforts and provides links to the code repositories.
  • rc.d script for Node.js application
    2 projects | /r/freebsd | 20 Nov 2022
  • MISP at scale on Kubernetes
    10 projects | dev.to | 17 Nov 2022
    The project MISP-Docker from Coolacid is providing a containerized version of the MISP solution. This all-in-one solution includes the frontend, background jobs, cronjobs and an HTTP Server (Nginx) all orchestrated by process manager tool called supervisor. External services such as the database and Redis aren’t part of the container but are necessary. We decided that this project is very a good starting point to scale the MISP on Kubernetes.
  • A Deep Dive Into Laravel Queues
    2 projects | dev.to | 26 Oct 2022
    So far in this article, you’ve started the queue workers manually. In a production server, that's not an option. Instead, you'll have to use a program called supervisor. It's a popular process control system for UNIX-like operating systems. If you're deploying an application on a Ubuntu server, supervisor will come pre-installed. However, if you're on a platform that doesn't come with the program pre-installed, follow the official installation instructions.
  • Impossible to kill app
    2 projects | /r/androidapps | 17 Oct 2022
    Not sure if this helps, but on normal Linux systems I usually use supervisor to ensure processes keep running

Docker Compose

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 2024-03-13.
  • How to Set Up a Docker Container
    3 projects | dev.to | 13 Mar 2024
    This foundation now opens the door to even more powerful concepts. You can explore more advanced concepts such as container networking, streamlining the management of complex applications with Docker Compose, and how to make your application data persistent using volumes.
  • How to Dockerise a NodeJS - TypeScript API || A Comprehensive Guide from Environment Setup to Deployment with a CI/CD Pipeline
    5 projects | dev.to | 18 Jan 2024
    sudo curl -L "https://github.com/docker/compose/releases/latest/download/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
  • Build and Deploy a ReactJS App to AWS EC2 with Docker, NGINX, and Automate with GitHub Actions.
    5 projects | dev.to | 5 Jan 2024
    [ec2-user]$ sudo yum update -y [ec2-user]$ sudo yum install -y docker [ec2-user]$ sudo service docker start [ec2-user]$ sudo curl -L https://github.com/docker/compose/releases/latest/download/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose [ec2-user]$ sudo chmod +x /usr/local/bin/docker-compose [ec2-user]$ docker --version Docker version 20.10.23, build 7155243 [ec2-user]$ docker-compose --version Docker Compose version v2.18.1
  • MongoDB on Your Local Machine Using Docker: A Step-by-Step Guide
    2 projects | dev.to | 1 Jan 2024
    Docker Compose Documentation
  • Docker - Setup a local JS and Python Development environment (Part 2)
    2 projects | dev.to | 31 Dec 2023
    groupadd -g 997 docker gpasswd -a jenkins docker curl -L https://github.com/docker/compose/releases/tag/1.29.2/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose chmod +x /usr/local/bin/docker-compose #confirm the docker-compose is installed docker-compose version
  • Docker - Setup a local JS and Python Development environment
    3 projects | dev.to | 2 Dec 2023
    Now that we have our basic script to run the Node application, we'll create our base image. This time we will not be using the Dockerfile as we did earlier with the Python environment, but we will pull directly from the Docker Hub registry. Because we have multi-container services, it's best to orchestrate our services from a single file rather than building the services individually from a Dockerfile, which could be a daunting task if we need to build many services. Therefore, spinning up our Node containers with Docker Compose can be pretty handy in these situations. Note that Docker compose does not replace Dockerfile. Rather, the latter is part of a process to build Docker images, which are part of containers. Docker Compose allows us to operate the Node app alongside other services (assuming we have many services we need to spin up). In our case, it will be alongside our py service.
  • Jump into Microservices Testing with Docker Compose and Skyramp
    3 projects | dev.to | 30 Nov 2023
    My previous blog posts have focused on the array of options Skyramp provides for testing distributed applications deployed to Kubernetes clusters. However, Kubernetes is not required to reap the benefits of using Skyramp for test automation. You can also setup and deploy your system-under-test using Docker Compose. In this article, we'll explore how you can leverage Skyramp in conjunction with Docker Compose to streamline your microservices testing process.
  • Adding Dockerfiles to Open-Source Projects
    6 projects | dev.to | 23 Nov 2023
    From the official documentation,
  • New computer? Install THIS first... 💻
    2 projects | dev.to | 23 Nov 2023
    Create a separate environment with several services working together, using Docker Compose
  • Monitoring symfony messenger listening to the worker events
    4 projects | dev.to | 12 Nov 2023
    Docker and docker compose: We will use docker as a container manager and docker-compose as a tool to configure and start a redis container. If you have not used them so far, refer to the links to install them.

What are some alternatives?

When comparing supervisor and Docker Compose you can also consider the following projects:

PM2 - Node.js Production Process Manager with a built-in Load Balancer.

LibreNMS-docker - LibreNMS Docker image

terraform - Terraform enables you to safely and predictably create, change, and improve infrastructure. It is a source-available tool that codifies APIs into declarative configuration files that can be shared amongst team members, treated as code, edited, reviewed, and versioned.

Portainer - Making Docker and Kubernetes management easy.

Cloud-Init - unofficial mirror of Ubuntu's cloud-init

k3s - Lightweight Kubernetes

docker-cloudflared - Cloudflared proxy-dns Docker image

portainer-templates - Various Portainer App Templates

acme-companion - Automated ACME SSL certificate generation for nginx-proxy

Nomad - Nomad is an easy-to-use, flexible, and performant workload orchestrator that can deploy a mix of microservice, batch, containerized, and non-containerized applications. Nomad is easy to operate and scale and has native Consul and Vault integrations.

Dokku - A docker-powered PaaS that helps you build and manage the lifecycle of applications

honcho - Honcho: a python clone of Foreman. For managing Procfile-based applications.