All apps · 0 apps
binhex-intellij
Docker app from Binhex's Repository
Overview
Readme
View on GitHubApplication
Description
IntelliJ IDEA is a special programming environment or integrated development environment (IDE) largely meant for Java. This environment is used especially for the development of programs. It is developed by a company called JetBrains, which was formally called IntelliJ. It is available in two editions: the Community Edition which is licensed by Apache 2.0, and a commercial edition known as the Ultimate Edition. Both of them can be used for creating software which can be sold. What makes IntelliJ IDEA so different from its counterparts is its ease of use, flexibility and its solid design. This Docker Image includes Git for SCM and Scala, Kotlin and Groovy programming languages, and Gradle for build automation.
Build notes
Latest stable IntelliJ IDEA Community Edition release from Arch Linux.
Usage
docker run -d \
-p 5900:5900 \
-p 6080:6080 \
--name=<container name> \
--security-opt seccomp=unconfined \
-v <path for config files>:/config \
-v <path for data files>:/data \
-v /etc/localtime:/etc/localtime:ro \
-e HTTPS_CERT_PATH=<path to cert file> \
-e HTTPS_KEY_PATH=<path to key file> \
-e WEBPAGE_TITLE=<name shown in browser tab> \
-e VNC_PASSWORD=<password for web ui> \
-e ENABLE_STARTUP_SCRIPTS=<yes|no> \
-e HEALTHCHECK_COMMAND=<command> \
-e HEALTHCHECK_ACTION=<action> \
-e HEALTHCHECK_HOSTNAME=<hostname> \
-e UMASK=<umask for created files> \
-e WEBUI_PORT=<port> \
-e PUID=<uid for user> \
-e PGID=<gid for user> \
binhex/arch-intellij
Please replace all user variables in the above command defined by <> with the correct values.
Example
docker run -d \
-p 5900:5900 \
-p 6080:6080 \
--name=intellij \
--security-opt seccomp=unconfined \
-v /apps/docker/intellij:/config \
-v /apps/docker/intellij/projects:/data \
-v /etc/localtime:/etc/localtime:ro \
-e WEBPAGE_TITLE=Tower \
-e VNC_PASSWORD=mypassword \
-e ENABLE_STARTUP_SCRIPTS=yes \
-e UMASK=000 \
-e WEBUI_PORT=6080 \
-e PUID=0 \
-e PGID=0 \
binhex/arch-intellij
Access via web interface (noVNC)
http://<host ip>:<host port>/vnc.html?resize=remote&host=<host ip>&port=<host port>&&autoconnect=1
e.g.:-
http://192.168.1.10:6080/vnc.html?resize=remote&host=192.168.1.10&port=6080&&autoconnect=1
Access via VNC client
<host ip>::<host port>
e.g.:-
192.168.1.10::5900
Notes
ENABLE_STARTUP_SCRIPTS when set to yes will allow a user to install
additional packages from the official Arch Repository or the Arch User
Repository (AUR) via scripts located in the folder /config/home/scripts/. A
sample script is located at /config/home/scripts/example-startup-script.sh
with comments to guide the user on script creation.
User ID (PUID) and Group ID (PGID) can be found by issuing the following command for the user you want to run the container as:-
id <username>
If you appreciate my work, then please consider buying me a beer :D
Install binhex-intellij on Unraid in a few clicks.
Find binhex-intellij in Community Apps on your Unraid server, review the template, and click Install. Unraid handles the Docker app or plugin setup from the published template.
Categories
Download Statistics
Total Downloads Over Time
Related apps
Explore more like this
Explore allLinks
Details
ghcr.io/binhex/arch-intellijRuntime arguments
- Web UI
https://[IP]:[PORT:6080]/vnc.html?resize=remote&host=[IP]&port=[PORT:6080]&autoconnect=1- Network
bridge- Shell
bash- Privileged
- false
- Extra Params
--restart=unless-stopped
Template configuration
Specify the port used for VNC client connectivity.
- Target
- 5900
- Default
- 5900
Specify the Web UI port for for the application.
- Target
- 6080
- Default
- 6080
Specify the container path to your configuration files, e.g. databases, configuration files, logs etc.
- Target
- /config
- Default
- /mnt/user/appdata/intelliJ
Specify the container path to your downloaded files or user created content.
- Target
- /data
Specify the path to the HTTPS certificate file
- Target
- HTTPS_CERT_PATH
Specify the path to the HTTPS key file
- Target
- HTTPS_KEY_PATH
Specify the web title shown for the webpage
- Target
- WEBPAGE_TITLE
- Default
- Intellij
Specify the password to access the Web UI, if blank no password will be prompted.
- Target
- VNC_PASSWORD
Specify whether to run a startup script which can in turn install additional packages.
- Target
- ENABLE_STARTUP_SCRIPTS
- Default
- no|yes
Specify the port the application will listen on - IMPORTANT: If you change this value then you will also need to delete and re-create the port mapping to match.
- Target
- WEBUI_PORT
- Default
- 6080
Enable or disable healthchecks.
- Target
- ENABLE_HEALTHCHECK
- Default
- yes|no
The command or script to execute, if not specified then the script healthcheck.sh will be used (process, dns and https checking).
- Target
- HEALTHCHECK_COMMAND
The action to execute if the healthcheck command returns a non zero exit code, if not specified the action will be 'exit 1', if you want the container to exit on failure then set the action to 'kill 1'.
- Target
- HEALTHCHECK_ACTION
The hostname used when performing HTTPS and DNS healthchecking.
- Target
- HEALTHCHECK_HOSTNAME
- Default
- google.com
User ID for the running container
- Target
- PUID
- Default
- 99
Group ID for the running container
- Target
- PGID
- Default
- 100
UMASK for the running container
- Target
- UMASK
- Default
- 000
