Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/binhex/arch-intellij
Docker build script for Arch Linux base with IntelliJ IDEA
https://github.com/binhex/arch-intellij
arch-linux docker docker-image groovy gui ide intellij java kotlin novnc scala x-windows
Last synced: about 2 months ago
JSON representation
Docker build script for Arch Linux base with IntelliJ IDEA
- Host: GitHub
- URL: https://github.com/binhex/arch-intellij
- Owner: binhex
- License: gpl-3.0
- Created: 2018-01-03T12:20:31.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-10-01T19:16:28.000Z (3 months ago)
- Last Synced: 2024-10-12T18:58:31.447Z (2 months ago)
- Topics: arch-linux, docker, docker-image, groovy, gui, ide, intellij, java, kotlin, novnc, scala, x-windows
- Language: Shell
- Homepage:
- Size: 76.2 KB
- Stars: 10
- Watchers: 2
- Forks: 21
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
**Application**
[IntelliJ IDEA](https://www.jetbrains.com/idea/)
**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= \
--security-opt seccomp=unconfined \
-v :/config \
-v :/data \
-v /etc/localtime:/etc/localtime:ro \
-e WEBPAGE_TITLE= \
-e VNC_PASSWORD= \
-e ENABLE_STARTUP_SCRIPTS= \
-e UMASK= \
-e PUID= \
-e PGID= \
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 PUID=0 \
-e PGID=0 \
binhex/arch-intellij
```**Access via web interface (noVNC)**
`http://:/vnc.html?resize=remote&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**
`::`
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
```
___
If you appreciate my work, then please consider buying me a beer :D[![PayPal donation](https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4)
[Documentation](https://github.com/binhex/documentation) | [Support forum](https://forums.unraid.nets/topic/62598-support-binhex-intellij/)