Jelastic CLI in a container. https://kb.layershift.com/swap-public-ip-between-environments
792
Jelastic CLI in a container. No need to install Java libraries directly on your system.
The image weighs about 160MB and provides full Jelastic CLI functionality.
Docker image made by good people at Layershift.
docker pull layershift/jelastic-cli
To run the container, specify the following variables:
J_LOGIN - your Jelastic loginJ_PASSWORD - your Jelastic passwordJ_PLATFORM - app.j.layershift.co.ukRun the image interactively with:
docker run -it --rm \
-e "[email protected]" \
-e "J_PASSWORD=password" \
-e "J_PLATFORM=app.j.layershift.co.uk" \
layershift/jelastic-cli
or concatenate commands such as
docker run -it --rm \
-e "[email protected]" \
-e "J_PASSWORD=password" \
-e "J_PLATFORM=app.j.layershift.co.uk" \
layershift/jelastic-cli "/root/jelastic/environment/control/startenv --silent true --envName my-environment-name"
Licensed under GNU LGPLv3
Content type
Image
Digest
Size
54.9 MB
Last updated
about 8 years ago
docker pull layershift/jelastic-cli