community VS rules_docker

Compare community vs rules_docker and see what are their differences.

community

Community content for the Cloud Native Buildpacks (CNB) project (by buildpacks)

rules_docker

Rules for building and handling Docker images with Bazel (by bazelbuild)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
community rules_docker
2 8
42 1,058
- -
6.5 0.0
17 days ago 7 months ago
Starlark
Creative Commons Attribution 4.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.

community

Posts with mentions or reviews of community. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-02-08.
  • Buildpacks vs. Dockerfiles
    7 projects | news.ycombinator.com | 8 Feb 2021
    A list of adopters (many of which are hosting providers) is here: https://github.com/buildpacks/community/blob/main/ADOPTERS.m...
  • Run More Stuff in Docker
    11 projects | news.ycombinator.com | 26 Dec 2020
    Many comments here point out how difficult it is to manage a separate dependency stack for each container when you use Dockerfiles to build them. This problem is just as difficult, time-intensive, and security-critical for microservice apps running on K8s as it is for CLI tools and graphical apps.

    Worth pointing out that there is an incubating CNCF project that tries to solve this problem by forgoing Dockerfiles entirely: Cloud Native Buildpacks (https://buildpacks.io)

    CNB defines safe seams between OCI image layers so that can be replaced out of order, directly on any Docker registry (only JSON requests), and en-mass. This means you can, e.g., instantly update all of your OS packages for your 1000+ containers without running any builds, as long as you use an LTS distribution with strong ABI promises (e.g., Ubuntu 20.04). Most major cloud vendors have quietly adopted it, especially for function builds: https://github.com/buildpacks/community/blob/main/ADOPTERS.m...

    You might recognize "buildpacks" from Heroku, and in fact the project was started several years ago in the CNCF by the folks who maintained the Heroku and Cloud Foundry buildpacks in the pre-Dockerfile era.

    [Disclaimer: I'm one of the founders of the project, on the VMware (formerly Cloud Foundry) side.]

rules_docker

Posts with mentions or reviews of rules_docker. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-08.
  • Ko: Easy Go Containers
    2 projects | news.ycombinator.com | 8 Nov 2023
  • Crafting container images without Dockerfiles
    20 projects | news.ycombinator.com | 6 Feb 2023
    My company uses Bazel's rules docker to build our images: https://github.com/bazelbuild/rules_docker

    They're pretty great and have a lot of the caching and parallelism benefits mentioned in the post for free out of the box, along with determinism (which Docker files don't have because you can run arbitrary shell commands). Our backend stack is also built with Bazel so we get a nice tight integration to build our images that is pretty straightforward.

    We've also built some nice tooling around this to automatically put our maven dependencies into different layers using Bazel query and buildozer. Since maven deps don't change often we get a lot of nice caching advantages.

  • Does google use rules_docker internally?
    1 project | /r/bazel | 21 Mar 2022
    I've seen rules_docker is looking for maintainers here ; Does this mean it doesn't use it that much internally? If so, how do they go about using other services e.g docker-compose for running external services e.g database?
  • Speed boost achievement unlocked on Docker Desktop 4.6 for Mac
    9 projects | news.ycombinator.com | 16 Mar 2022
    Did you mean this one? https://github.com/bazelbuild/rules_docker

    I was very interested in this Bazel-based way of building containers but its README page says "it is on minimal life support," which does not inspire confidence. How's your experience using it?

  • Build images within another Docker container
    4 projects | /r/docker | 4 Oct 2021
    As others have said docker in docker or a separate build server are your best options using docker. You can also use Bazel (which doesn't require the docker daemon) to build docker images which will build deterministic images every time due to not incorporating the timestamp: https://github.com/bazelbuild/rules_docker
  • Evolution of code deployment tools at Mixpanel
    3 projects | news.ycombinator.com | 12 Jun 2021
    There's some BazelCon talks about people doing similar stuff but not actually open sourcing their code.

    P.S. if you use rules_docker please feel free to open a PR to add your company to our README: https://github.com/bazelbuild/rules_docker/#adopters

  • Is Docker Dead in the Water?
    4 projects | /r/programming | 7 May 2021
    The docker utility isn't the only way to build and run containers. There's also cri-o, podman, and crun among others for running containers. For building there is podman again, Jib for Java applications, and bazel plus many others. The docker approach of using a client to connect to a daemon required to run as root has turned out to be slow and insecure.
  • Buildpacks vs. Dockerfiles
    7 projects | news.ycombinator.com | 8 Feb 2021
    During the last 3 years I've had the pleasure of using Bazel's rules_docker to generate all my container images (https://github.com/bazelbuild/rules_docker).

    In a nutshell, rules_docker is a set of build rules for the Bazel build system (https://bazel.build). What's pretty nice about these rules is that they don't rely on a Docker daemon. They are rules that directly construct image tarballs that you can either load into your local Docker daemon or push to a registry.

    What's nice about this approach is that image generation works on any operating system. For example, even on a Mac or Windows system that doesn't have Docker installed, you're able to build Linux containers. They are also fully reproducible, meaning that you often don't need to upload layers when pushing (either because they haven't changed, or because some colleague/CI job already pushed those layers).

    I guess rules_docker works fine for a variety of programming languages. I've mainly used it with Go, though.

What are some alternatives?

When comparing community and rules_docker you can also consider the following projects:

nodejs - A Cloud Native Buildpack for Node.JS

buildah - A tool that facilitates building OCI images.

cutlass - Write CNB integration tests for Pack in Ruby with cutlass

kaniko - Build Container Images In Kubernetes

go - A Cloud Native Buildpack for Go

rules_gitops - This repository contains rules for continuous, GitOps driven Kubernetes deployments.

whalebrew - Homebrew, but with Docker images

crun - A fast and lightweight fully featured OCI runtime and C library for running containers

feed-test

jib - 🏗 Build container images for your Java applications.

podman - Podman: A tool for managing OCI containers and pods.

cri-o - Open Container Initiative-based implementation of Kubernetes Container Runtime Interface