docker-ce VS etcd

Compare docker-ce vs etcd and see what are their differences.

docker-ce

:warning: This repository is deprecated and will be archived (Docker CE itself is NOT deprecated) see the https://github.com/docker/docker-ce/blob/master/README.md :warning: (by docker)

etcd

Distributed reliable key-value store for the most critical data of a distributed system (by etcd-io)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
docker-ce etcd
10 61
5,669 46,292
- 1.0%
0.0 9.9
over 1 year ago 6 days ago
Go Go
Apache License 2.0 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.

docker-ce

Posts with mentions or reviews of docker-ce. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-12-03.
  • Docker compose updates
    1 project | /r/docker | 27 Mar 2023
  • Kubernetes: What It Is, How It Works, and Why It's A Game changer
    5 projects | dev.to | 3 Dec 2022
    Yes, Kubernetes, in fact, relies on a number of other free and open source software packages. As a base, it relies on the Docker container runtime and the CoreOS Linux distribution, and it utilizes other open source projects for a number of its components, such as etcd for distributed key-value storage. The tool's core and control plane are both built in GO programming language, making it a completely Go-based application. Kubernetes itself is an open source project and has been used as a building block for other open source projects.
  • Docker als nicht-root laufenlassen?
    3 projects | /r/de_EDV | 8 Sep 2022
  • Steve Wozniak is not boring
    1 project | news.ycombinator.com | 28 Jun 2022
  • Exploring Docker
    1 project | dev.to | 28 Dec 2021
    Container images become containers at runtime and in the case of Docker containers - images become containers when they run on Docker Engine.
  • What the fuck IS docker desktop?
    2 projects | /r/docker | 2 Sep 2021
    So I'm surprisingly ignorant on this but I'm curious if the full docker command line tool for linux is free and open source. It seems like https://github.com/docker/docker-ce is free and open source, but it's unclear to me if the docker community edition has other components which are not free and open source since this repository is deprecated. If the base verion is free and open source, why don't open source projects just re-implement equivalents of all of the other tools docker is providing at cost, to create a full free and open source suite?
  • Why is Docker available in an outdated version?
    2 projects | /r/Ubuntu | 27 Aug 2021
    apt show docker.io Package: docker.io Version: 20.10.7-0ubuntu1~20.04.1 Built-Using: glibc (= 2.31-0ubuntu9), golang-1.13 (= 1.13.8-1ubuntu1) Priority: optional Section: universe/admin Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Paul Tagliamonte [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 193 MB Depends: adduser, containerd (>= 1.2.6-0ubuntu1~), iptables, debconf (>= 0.5) | debconf-2.0, libc6 (>= 2.8), libdevmapper1.02.1 (>= 2:1.02.97), libsystemd0 (>= 209~) Recommends: ca-certificates, git, pigz, ubuntu-fan, xz-utils, apparmor Suggests: aufs-tools, btrfs-progs, cgroupfs-mount | cgroup-lite, debootstrap, docker-doc, rinse, zfs-fuse | zfsutils Breaks: docker (<< 1.5~) Replaces: docker (<< 1.5~) Homepage: https://www.docker.com/community-edition Download-Size: 36.9 MB APT-Sources: https://mirror.asergo.com/ubuntu focal-updates/universe amd64 Packages Description: Linux container runtime Docker complements kernel namespacing with a high-level API which operates at the process level. It runs unix processes with strong guarantees of isolation and repeatability across servers.
  • Hacker deleted all of NewsBlur’s mongo data and is now holding the data hostage
    7 projects | news.ycombinator.com | 23 Jun 2021
    Well, Docker CE comes with a huge Disclaimer of Warranty (https://github.com/docker/docker-ce/blob/master/LICENSE). I don't think we can complain. "I should have tested it before deploying to production" it's the right thing to say.
  • Freelancers - most common non-PHP backend language clients request?
    1 project | /r/PHP | 20 Apr 2021
    Not sure what you mean by "Go++" that's not really a thing. Docker's engine and tooling is primarily written in Go. You can see a copy of an older version of docker easily at https://github.com/docker/docker-ce/tree/master/components/. A number of other devops tools are written in Go, as are a number of microservices out in the wild.
  • Simple question about errors
    1 project | /r/golang | 16 Feb 2021

etcd

Posts with mentions or reviews of etcd. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-16.
  • Oracle Linux 8.8'de PostgreSQL 13 Yedekli Yapı Nasıl Kurulur? - Patroni, ETCD, HAProxy
    1 project | dev.to | 7 Dec 2023
    sudo dnf -y install curl wget vim ETCD_RELEASE=$(curl -s https://api.github.com/repos/etcd-io/etcd/releases/latest|grep tag_name | cut -d '"' -f 4) echo $ETCD_RELEASE wget https://github.com/etcd-io/etcd/releases/download/${ETCD_RELEASE}/etcd-${ETCD_RELEASE}-linux-amd64.tar.gz tar xvf etcd-${ETCD_RELEASE}-linux-amd64.tar.gz cd etcd-${ETCD_RELEASE}-linux-amd64 sudo mv etcd* /usr/local/bin ls /usr/local/bin /usr/local/bin/etcd --version
  • Transitioning from more traditional OOP like C# to Go, what are the biggest coding style differences.
    2 projects | /r/golang | 16 Nov 2023
    Reading the standard library will give you ideas/insight about various Go idiomatic patterns/approaches, and you can see a full website/API implementation in the pkg.go.dev repository (https://github.com/golang/pkgsite). Projects like https://github.com/etcd-io/etcd may be interesting too.
  • Fault Tolerance in Distributed Systems: Strategies and Case Studies
    4 projects | dev.to | 18 Oct 2023
    Failure Detection and Recovery It’s not enough to have backup systems. It’s also crucial to detect failures quickly. Modern systems employ monitoring tools and rely on distributed coordination systems such as Zookeeper or etcd to identify faults in real-time: once detected, recovery mechanisms are triggered to restore the service.
  • The Complete Microservices Guide
    17 projects | dev.to | 21 Sep 2023
    Service Discovery: Microservices need to discover and communicate with each other dynamically. Service discovery tools like etcd, Consul, or Kubernetes built-in service discovery mechanisms help locate and connect to microservices running on different nodes within the infrastructure.
  • How is Apache APISIX Fast?
    6 projects | dev.to | 13 Sep 2023
    APISIX uses etcd to store and synchronize configurations.
  • Apache APISIX without etcd
    3 projects | dev.to | 27 Jul 2023
    etcd is an excellent key-value distributed database used internally by Kubernetes and managed by the CNCF. It's a great option, and that's the reason why Apache APISIX uses it too. Yet, it's not devoid of issues.
  • From /etc to database
    1 project | /r/BSD | 11 Jul 2023
    Someone on HN (https://news.ycombinator.com/item?id=36682595) suggested etcd (https://etcd.io)
  • Evaluating Apache APISIX vs. Spring Cloud Gateway
    3 projects | dev.to | 22 Jun 2023
    In traditional mode, APISIX stores its configuration in etcd. APISIX offers a rich API to access and update the configuration, the Admin API. In standalone mode, the configuration is just plain YAML. It's the approach for GitOps practitioners: you'd store your configuration in a Git repo, watch it via your favorite tool (e.g., Argo CD or Tekton), and the latter would propagate the changes to APISIX nodes upon changes. APISIX reloads its configuration every second or so.
  • Implementing a distributed key-value store on top of implementing Raft in Go
    5 projects | news.ycombinator.com | 25 May 2023
  • RedisRaft
    2 projects | news.ycombinator.com | 6 May 2023
    I am not sure neither. But this might overcome the etcd's soft storage limit of 8GB? [1]

    [1] https://github.com/etcd-io/etcd/issues/9771

What are some alternatives?

When comparing docker-ce and etcd you can also consider the following projects:

Docker Compose - Define and run multi-container applications with Docker

consul - Consul is a distributed, highly available, and data center aware solution to connect and configure applications across dynamic, distributed infrastructure.

masscan - TCP port scanner, spews SYN packets asynchronously, scanning entire Internet in under 5 minutes.

minio - The Object Store for AI Data Infrastructure

Moby - The Moby Project - a collaborative project for the container ecosystem to assemble container-based systems

Vault - A tool for secrets management, encryption as a service, and privileged access management

engine - This repository is no longer in use. Starting with Docker Engine 20.10, active development, releases, and release-branches can now be found in the upstream https://github.com/moby/moby repository

Apache ZooKeeper - Apache ZooKeeper

compose-cli - Easily run your Compose application to the cloud with compose-cli

nsq - A realtime distributed messaging platform

AttackSurfaceAnalyzer - Attack Surface Analyzer can help you analyze your operating system's security configuration for changes during software installation.

traefik - The Cloud Native Application Proxy