Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jamesnetherton/docker-intellij-community
- Owner: jamesnetherton
- Created: 2015-02-28T19:44:52.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-12-01T08:03:48.000Z (almost 7 years ago)
- Last Synced: 2024-10-03T09:34:18.589Z (about 1 month ago)
- Topics: docker, docker-image, intellij
- Size: 22.5 KB
- Stars: 6
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```