openkbs/pycharm-docker
PyCharm (Python IDE from JetBrain)
7.4K
Image is pulling from openkbs/pycharm-docker
./run.sh
You can build your own image locally.
./build.sh
If you run "./run.sh" instead of "docker-compose up", you don't have to do anything as below.
PyCharm configurations are kept on $HOME/PyCharmCE2018.1
inside the container, so if you
want to keep them around after you close it, you'll need to share it with your
host.
For example: (Version might be different - use run.sh instead)
docker run -ti --rm \
-e DISPLAY=$DISPLAY \
-v /tmp/.X11-unix:/tmp/.X11-unix \
-v $HOME/PyCharmCE2018.1:/home/developer/PyCharmCE2018.1 \
-v `pwd`:/home/developer/workspace \
openkbs/PyCharm-docker
More resource in X11 display of Eclipse on your host machine's OS, please see
You might see the warning message in the launching xterm console like below, you can just ignore it. I googles around and some blogs just suggested to ignore since the IDE still functional ok.
** (eclipse:1): WARNING **: Couldn't connect to accessibility bus: Failed to connect to socket /tmp/dbus-wrKH8o5rny: Connection refused
** (java:7): WARNING **: Couldn't connect to accessibility bus: Failed to connect to socket /tmp/dbus-wrKH8o5rny: Connection refused
docker pull openkbs/pycharm-docker