base2 Tools Released on Github Packages

base2 is now starting to publish container images and ruby gems on github packages repository https://github.com/orgs/base2Services/packages. base2 tools Guardian and Ciinabox 2 have already moved across to the new repo with more to follow.

Container Images

Pulling public images from guthub container repository is the same as from docker hub, the only difference is the image name.

For example pulling ciinabox from docker hub looks like

docker pull base2/ciinabox:0.5.3

Pulling from ghcr

docker pull ghcr.io/base2services/ciinabox:0.5.3

base2services/ciinabox

Ruby Gems

Installing ruby gems from github is also similar to rubygems.org but requires a source option in the install command

gem install cfn-guardian --version "0.5.3" --source "https://rubygems.pkg.github.com/base2services"

Alternitvely the github source can be added to your ~/.gemrc file

gem: --no-document
update_sources: true
sources:
- https://rubygems.org
- https://rubygems.pkg.github.com/base2services

base2Services/cfn-guardian