Skip to content

ahmetctoker/s2i-base-container

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

OpenShift base images

This repository contains Dockerfiles which serve as base images for various OpenShift images.

Versions

s2i image versions currently provided are:

  • core - rhel7 base + s2i settings
  • base - s2i-core + development libraries + npm

RHEL versions currently supported are:

  • RHEL7

CentOS versions currently supported are:

  • CentOS7

For more information about contributing, see the Contribution Guidelines. For more information about concepts used in these container images, see the Landing page.

Installation

To build a S2I base image, choose either the CentOS or RHEL based image:

  • RHEL based image

    This image is available in Red Hat Container Registry. To download it run:

    $ docker pull registry.access.redhat.com/rhscl/s2i-base-rhel7
    

    Or

    $ docker pull registry.access.redhat.com/rhscl/s2i-core-rhel7
    

    To build a RHEL based S2I base image, you need to run the build on a properly subscribed RHEL machine.

    $ git clone --recursive https://github.com/sclorg/s2i-base-container.git
    $ cd s2i-base-container
    $ git submodule update --init
    $ make build TARGET=rhel7 VERSIONS=base
    
  • CentOS based image

    This image is available on DockerHub. To download it run:

    $ docker pull centos/s2i-base-centos7
    

    Or

    $ docker pull centos/s2i-core-centos7
    

    To build a S2I base image from scratch run:

    $ git clone --recursive https://github.com/sclorg/s2i-base-container.git
    $ cd s2i-base-container
    $ git submodule update --init
    $ make build TARGET=centos7 VERSIONS=base
    

Notice: By omitting the VERSIONS parameter, the build/test action will be performed on all provided versions of S2I base image.

About

OpenShift base images

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 43.4%
  • Dockerfile 31.5%
  • Python 20.5%
  • Makefile 4.6%