Skip to content

omalab/fullstaq-ruby-docker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 

Repository files navigation

Fullstaq Ruby Docker images

Fullstaq Ruby is a custom build of standard MRI Ruby interpreter with memory allocator replaced, security patches applied, and more goodies on the way.

These images are intended to be used while Fullstaq and Hongli Lai haven't build their own.

Sponsored by Evil Martians

Usage

Pull it directly from the quay.io registry:

docker pull quay.io/evl.ms/fullstaq-ruby:3.0.1-jemalloc-slim

Or use as base image in your Dockerfile:

ARG RUBY_VERSION=3.0.1-jemalloc

FROM quay.io/evl.ms/fullstaq-ruby:${RUBY_VERSION}-slim

Flavors

Ruby 3.0.1, 2.7.3, and 2.6.7 with jemalloc and malloctrim are available. Images are built on top of both Debian 9 (stretch) and 10 (buster):

# 3.0:
docker pull quay.io/evl.ms/fullstaq-ruby:3.0.1-jemalloc-buster-slim
docker pull quay.io/evl.ms/fullstaq-ruby:3.0.1-jemalloc-buster
docker pull quay.io/evl.ms/fullstaq-ruby:3.0.1-jemalloc-stretch-slim
docker pull quay.io/evl.ms/fullstaq-ruby:3.0.1-jemalloc-stretch
docker pull quay.io/evl.ms/fullstaq-ruby:3.0.1-malloctrim-buster-slim
docker pull quay.io/evl.ms/fullstaq-ruby:3.0.1-malloctrim-buster
docker pull quay.io/evl.ms/fullstaq-ruby:3.0.1-malloctrim-stretch-slim
docker pull quay.io/evl.ms/fullstaq-ruby:3.0.1-malloctrim-stretch

# 2.7:
docker pull quay.io/evl.ms/fullstaq-ruby:2.7.3-jemalloc-buster-slim
docker pull quay.io/evl.ms/fullstaq-ruby:2.7.3-jemalloc-buster
docker pull quay.io/evl.ms/fullstaq-ruby:2.7.3-jemalloc-stretch-slim
docker pull quay.io/evl.ms/fullstaq-ruby:2.7.3-jemalloc-stretch
docker pull quay.io/evl.ms/fullstaq-ruby:2.7.3-malloctrim-buster-slim
docker pull quay.io/evl.ms/fullstaq-ruby:2.7.3-malloctrim-buster
docker pull quay.io/evl.ms/fullstaq-ruby:2.7.3-malloctrim-stretch-slim
docker pull quay.io/evl.ms/fullstaq-ruby:2.7.3-malloctrim-stretch

# 2.6:
docker pull quay.io/evl.ms/fullstaq-ruby:2.6.7-jemalloc-buster-slim
docker pull quay.io/evl.ms/fullstaq-ruby:2.6.7-jemalloc-buster
docker pull quay.io/evl.ms/fullstaq-ruby:2.6.7-jemalloc-stretch-slim
docker pull quay.io/evl.ms/fullstaq-ruby:2.6.7-jemalloc-stretch
docker pull quay.io/evl.ms/fullstaq-ruby:2.6.7-malloctrim-buster-slim
docker pull quay.io/evl.ms/fullstaq-ruby:2.6.7-malloctrim-buster
docker pull quay.io/evl.ms/fullstaq-ruby:2.6.7-malloctrim-stretch-slim
docker pull quay.io/evl.ms/fullstaq-ruby:2.6.7-malloctrim-stretch

Latest patch versions on latest Debian are also aliased with shortened tags including major and minor versions only: 3.0.1-jemalloc-buster → 3.0-jemalloc

docker pull quay.io/evl.ms/fullstaq-ruby:3.0-jemalloc-slim   # Same as quay.io/evl.ms/fullstaq-ruby:3.0.1-jemalloc-buster-slim
docker pull quay.io/evl.ms/fullstaq-ruby:3.0-jemalloc        # Same as quay.io/evl.ms/fullstaq-ruby:3.0.1-jemalloc-buster
docker pull quay.io/evl.ms/fullstaq-ruby:3.0-malloctrim-slim # Same as quay.io/evl.ms/fullstaq-ruby:3.0.1-malloctrim-buster-slim
docker pull quay.io/evl.ms/fullstaq-ruby:3.0-malloctrim      # Same as quay.io/evl.ms/fullstaq-ruby:3.0.1-malloctrim-buster

Details

Ruby is installed from official APT package repository. Rbenv isn't used.

Caveats

Bash login shell bash -l -c 'command' resets $PATH to default. It is not clear why it happens there, because in official Ruby image it works and this image is based on the same debian:stretch-slim base image.

That may hurt you if you're using whenever gem which wraps every command in Bash login shell by default. To remove this wrapping place following to the top of your config/schedule.rb:

# config/schedule.rb
set :job_template, nil

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 100.0%