bgems VS docker-projects

Compare bgems vs docker-projects and see what are their differences.

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
bgems docker-projects
1 1
1 -
- -
10.0 -
about 10 years ago -
Ruby
BSD 3-clause "New" or "Revised" License -
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.

bgems

Posts with mentions or reviews of bgems. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-01-26.
  • Rails on Docker · Fly
    16 projects | news.ycombinator.com | 26 Jan 2023
    One problem you're likely to run into is that systems using the same packaging lineage cut the same dependency up in different ways. The "right name" for a dependency can change between Ubuntu and Debian, between different releases of Ubuntu, and different architectures. It very quickly gets out of hand for any interesting set of dependencies. Now it might be that there's enough stability in the repositories these days that that's less true than it was, but I remember running into some really annoying cases at one point when I had a full gem mirror to play with.

    This is one of those problems that sounds easy but gets really fiddly. I had a quick run at it from a slightly different direction a looooong time ago: binary gems (https://github.com/regularfry/bgems although heaven knows if it even still runs). Precompiled binary gems would dramatically speed up installation at the cost of a) storage; and b) getting it right once. The script I cobbled together gathers the dependencies together into a `.Depends` file which you can just pipe through to the package manager, and could happily use to strap together a package corresponding to the dependency list.

    I've never really understood why a standard for precompiled gems never emerged, but it turns out it's drop-dead simple to implement. The script does some linker magic to reverse engineer the dpkg package dependency list from a compiled binary. I was quite pleased with it at the time, and while I don't think it's bullet-proof I do think it's worth having a poke at for ideas. Of course it can only detect binary dependencies, not data dependencies or anything more interesting, so there's still room for improvement.

docker-projects

Posts with mentions or reviews of docker-projects. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-01-26.
  • Rails on Docker · Fly
    16 projects | news.ycombinator.com | 26 Jan 2023
    I have my own local development Rails setup and template files that could be dropped in any project with minimal changes (mostly around configuring the db connection)

    - https://gitlab.com/sdwolfz/docker-projects/-/tree/master/rai...

    Haven't spent the time to document it. But the general idea is to have a `make` target that orchestrates everything so `docker-compose` can just spin things up.

    I've used this sort of thing for multiple types of projects, not just Rails, it can work with any framework granted you have the right docker images.

    For deployment I have something similar, builds upon the same concepts (with ansible instead of make, and focused on multi-server deploys, terraform for setting up the cloud resources), but not open sourced yet.

    Maybe I'll get to document it and post my own "Show HN" with this soon.

What are some alternatives?

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

lamby - 🐑🛤 Simple Rails & AWS Lambda Integration

dockerfile-rails - Provides a Rails generator to produce Dockerfiles and related files.

cruftspy - Detect unnecessary files in Docker images

dockerfiles - Various Dockerfiles I use on the desktop and on servers.

buildkit - concurrent, cache-efficient, and Dockerfile-agnostic builder toolkit

mrsk - Deploy web apps anywhere. [Moved to: https://github.com/basecamp/kamal]

buildah - A tool that facilitates building OCI images.

awesome-compose - Awesome Docker Compose samples

webpack - A bundler for javascript and friends. Packs many modules into a few bundled assets. Code Splitting allows for loading parts of the application on demand. Through "loaders", modules can be CommonJs, AMD, ES6 modules, CSS, Images, JSON, Coffeescript, LESS, ... and your custom stuff.