Build Stibo Step on Oracle Linux 7-Slim
10K+
This image starts Step Trailblazer on Oracle Linux 7-Slim with JDK 8. To customize, just add or remove process.
To change the Step Trailblazer version set the variable STEP_VERSION
FROM oracle-linux-step:latest
...
ENV STEP_VERSION "8.3"
...
version: '3'
services:
consul-client:
image: oracle-linux-step:latest
environment:
- 'STEP_VERSION=8.3'
$ docker run -e 'STEP_VERSION=8.3' \
oracle-linux-step:latest
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:
FROM oracle-linux-step:latest
...
ENV LOCALE "pt_BR.UTF-8"
ENV LOCALTIME "America/Sao_Paulo"
...
version: '3'
services:
consul-client:
image: oracle-linux-step:latest
environment:
- 'LOCALE=pt_BR.UTF-8'
- 'LOCALTIME=America/Sao_Paulo'
$ docker run -e 'LOCALE=pt_BR.UTF-8' \
-e 'LOCALTIME=America/Sao_Paulo' \
oracle-linux-step:latest
Content type
Image
Digest
Size
40.6 MB
Last updated
almost 9 years ago
docker pull icellani/oracle-linux-step