Sign inSign up

icellani/oracle-linux-step

By icellani

Updated almost 9 years ago

Build Stibo Step on Oracle Linux 7-Slim

Image
1

10K+

icellani/oracle-linux-step repository overview

Step on Oracle Linux

Description

This image starts Step Trailblazer on Oracle Linux 7-Slim with JDK 8. To customize, just add or remove process.

Step Version

To change the Step Trailblazer version set the variable STEP_VERSION

DockerFile:
FROM oracle-linux-step:latest
...
ENV STEP_VERSION "8.3"
...
docker-compose.yml
version: '3'
services:
  consul-client:
    image: oracle-linux-step:latest
    environment:
      - 'STEP_VERSION=8.3'
Docker command line
$ docker run -e 'STEP_VERSION=8.3' \
             oracle-linux-step:latest
Locale and Localtime Configuration

By default, this image is configured to use en_US.UTF-8 locale and UTC localtime.

To change this configuration, set the variables LOCALE and LOCALETIME.

Examples:

DockerFile:
FROM oracle-linux-step:latest
...
ENV LOCALE "pt_BR.UTF-8"
ENV LOCALTIME "America/Sao_Paulo"
...
docker-compose.yml
version: '3'
services:
  consul-client:
    image: oracle-linux-step:latest
    environment:
      - 'LOCALE=pt_BR.UTF-8'
      - 'LOCALTIME=America/Sao_Paulo'
Docker command line
$ docker run -e 'LOCALE=pt_BR.UTF-8' \
             -e 'LOCALTIME=America/Sao_Paulo' \
             oracle-linux-step:latest

Tag summary

Content type

Image

Digest

Size

40.6 MB

Last updated

almost 9 years ago

docker pull icellani/oracle-linux-step