Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jamesnetherton/docker-intellij-community

IntelliJ community edition docker image build
https://github.com/jamesnetherton/docker-intellij-community

docker docker-image intellij

Last synced: 19 days ago
JSON representation

IntelliJ community edition docker image build

Awesome Lists containing this project

README

        

# docker-intellij-community

[IntelliJ](https://www.jetbrains.com/idea/) community edition running on Docker.

## Building the image

Clone this repository, change into the source directory and run:

```
docker build -t yournamespace/yourimagename:yourtag
```

## Running IntelliJ

To run do the following to share your X11 socket with the IntelliJ container:
```
docker run -it \
-v /tmp/.X11-unix:/tmp/.X11-unix \
-e DISPLAY=unix$DISPLAY \
jamesnetherton/intellij-community
```