I imported into PyCharm 5.1 Beta 2 a training project that works great when I run it from the command line using docker layout: https://docs.docker.com/compose/django/
Trying to install a remote python interpreter is causing problems.
I'm trying to figure out what the service name field expects: the remote interpreter is the docker socket window - http://i.stack.imgur.com/Vah7P.png .
My docker-compose.yml file:
version: '2' services: db: image: postgres web: build: . command: python manage.py runserver 0.0.0.0:8000 volumes: - .:/code ports: - "8000:8000" depends_on: - db
When I try to enter a website or db or anything at all that comes to mind, I get an error: It is assumed that the service definition will be a map
So what should I go in there?
EDIT1 (new version: Pycharm 2016.1 release)
Now I am updated to the latest version and I am still having problems:. IOError: [Errno 21] Is the directory
Sorry for not tagging all links - there is a new limit for user links
source share