Portable Intellij IDEA CE 2025
103
A portable running Intellij Community 2025
Dockerfile (edit from https://github.com/psharkey/docker, checkout his awesome repo):
FROM ubuntu:22.04
# Get the python script required for "add-apt-repository"
# Configure the openjdk repo
RUN apt-get update \
&& apt-get install -y software-properties-common
# Install OpenJDK 11, X11 libraries, and wget
RUN apt-get install -y \
curl \
libxext-dev libxrender-dev libxtst-dev \
openjdk-11-jdk \
wget \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& rm -rf /tmp/*
# wget IntelliJ IDEA
ENV INTELLIJ_URL=https://download.jetbrains.com/idea/ideaIC-2025.1.4.tar.gz
RUN wget --progress=bar:force $INTELLIJ_URL -O /tmp/intellij.tar.gz \
&& mkdir /opt/intellij \
&& tar -xzf /tmp/intellij.tar.gz -C /opt/intellij --strip-components=1 \
&& rm -rf /tmp/*
CMD ["/opt/intellij/bin/idea.sh"]
Run
xhost +local:docker
docker run -d \
-e DISPLAY=$DISPLAY \
-e "TZ=Asia/Ho_Chi_Minh" \
-v .:/ws \
-v /tmp/.X11-unix:/tmp/.X11-unix \
--name intellij \
danchoi2001/intellij-portable:c2025.1.4
Content type
Image
Digest
sha256:261e6b16c…
Size
1.9 GB
Last updated
about 1 year ago
docker pull danchoi2001/intellij-portable:u2025.1.4.1