Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 815 Bytes

README.md

File metadata and controls

29 lines (22 loc) · 815 Bytes

This docker image helps you to start cloudbreak-shell. Previously the shell was part of the cloudbreak docker image, but they have a separate lifecycle, so it deservse it’s very own dockerfile. Here it comes ...

Usage

To connect to the productio cloudbreak server, you need onlu your accoutn email and password

docker run -it sequenceiq/cb-shell [email protected] secret123

Custom jar

If ypu want to use a custom cloudbreak, all you need is to specify it via the CLOUDBREAK_CUSTOM_JAR_URL= env variable:

docker run -it \
  -e CLOUDBREAK_CUSTOM_JAR_URL=https://example.com/custom-cb-shell.jar \
  sequenceiq/cb-shell [email protected] secret123

Troubleshooting

If you want to see more output, set the TRACE and variable to anything:

docker run -e TRACE=1 ...