Please enable JavaScript to view this site.

winIDEA Help

Version: 9.21.242

Navigation: Getting started > Install winIDEA > Install winIDEA for Linux

Scroll Prev Top Next More

Docker

In this topic:

Installing latest Verified build

Installing specific version - Hot fix build

Headless / hidden mode

 

Docker provides a powerful and flexible platform for building and deploying applications on Linux. It offers a range of benefits, including portability, isolation, efficiency, consistency, and security, which can help to streamline the development and deployment process and improve the overall quality of your applications. It is recommended to use it for multiple versions installed in parallel.

 

You can install BlueBox tools on Linux for Verified builds (monthly) and Hot fix builds (weekly). The difference between it is explained in winIDEA Release Notes.

 

Installing latest Verified build

number1

Create Docker on local Linux machine.

Prerequisites:

Linux host

Installed and configured Docker engine (follow the instructions from https://docs.docker.com/engine/install/)

 

number2

Get the shell script with executable permissions.

curl https://www.isystem.com/downloads/winIDEA/setup/docker-winidea > docker-winidea
chmod +x docker-winidea

 

It is recommended to put the script into $HOME/bin or /usr/local/bin to be called globally (defined by environment variable $PATH).

 

number3

Create a directory which will be docker home directory.

Example:

mkdir $HOME/dwinidea
cd $HOME/dwinidea

 

Docker container is created from the current working directory which is used as its home directory. In case of different directory use the command line switch --home=<path> to use another directory without spaces (it will be created automatically if it does not exist).

 

Number4

Import the image from the server.

docker-winidea import

 

Number5

Run winIDEA.

docker-winidea run

 

 

Installing specific version - Hot fix build

Link to Hot fix build winIDEA package is provided by the Technical support.

 

number1

Create Docker on local Linux machine.

Append the command line argument with the version to get this specific release.

docker-winidea import --version=<version>

 

number2

Run winIDEA.

docker-winidea run --version=<version>

 

 

Headless / hidden mode

To run winIDEA without showing GUI append the command line switch --nox.

docker-winidea run --version=<version> --nox

 

Copyright © 2024 TASKING Germany GmbH