When trying to develop and debug in container environment, in lieu of local machine
Yueteng | yh958@cornell.edu
Multiple versions of docs are kept in this page in the following order:
Solved these problems:
docker-compose updocker volume rm $(docker volume ls -f dangling=true -q) |
In terminal, run the above command to do some cleaning. (There might be some dangling volumes not garbage-collected yet by docker).
(Optional) In Docker Desktop, on the Container / Apps tab, delete all related containers of this project.
(Optional) In Docker Desktop, on the Images tab, except busybox, delete all related images of this project. Do NOT delete busybox.
Switch to git branch docker2, where the new code resides.
If everything goes swimmingly, it is recommended to merge docker2 into the branch you're working on (master, feature, etc.).
Some overview:
alpine Linux.alpine Linux does not include many necessary libs for development, explaining why Python extension fails and additional lib installation (RUN apk *) in DockerfileDockerfile: The base image FROM is changed to python:3.8.6, a full-feature image. You will also see many lines commented out, unnecessary for the moment.docker-compose.yml : This is used for development (also the default one). You can see all env variables for development.docker-compose-prod.yml: This will be for production. Not finished yet.docker-compose.debug.yml.old: Just some backup. Ignore it.# Path for online repo backend-online/dev-backend # Path for offline repo backend-offline/dev-dashboard |
Go to the path as above.
# For the first time # Or whenever you want to update the image, e.g changing Dockerfile, requirements.txt docker-compose up -d --build # Otherwise docker-compose up -d |
Run the command.
This will build the image, create+run the container.
This could take a minute.
Note: If there is an error message says" cannot import name 'Markup' from 'jinja2', you can try to fix it through the means provided by ImportError: cannot import name 'Markup' from 'jinja2'.


You should see a new container running.
Name is based on the path (not random anymore)
On VS Code, make sure you've installed these two extensions:
Remote - ContainersPythonOn VS Code, click the Remote button at bottom left > Attach to running container > Click the container name in the menu.
For the first time, it could take a minute to load.

For the first time, click File > Open and enter the path above /var/www/ . Then you will be at the working directory.
From the second time, VS Code will remember to open this path automatically.

As always, make sure you've installed this Python extension, and it is enabled in container.
Click an .py file to activate it.
Choose interpreter of Python 3.8.6 64-bit
It might show loading/downloading analysis at the bottom status bar, after which it should work properly.

Everything under www, if changed:
docker_code subfolderwww and docker_code as two pointers to the same folder# Visit http://localhost:5000/
{
"message": "Welcome to the Dockerized Flask MongoDB app, again and again and again (this will auto-reload)!"
}
# Change the message at app/views/static.py
# For instance, add "test" at the end
# Visit http://localhost:5000/ again
# Notice the end now includes "test"
# It's auto-reloaded
{
"message": "Welcome to the Dockerized Flask MongoDB app, again and again and again (this will auto-reload)! test"
} |
This example is only for online repo. (Offline repo does not have defined this url in repo)
Try the above to see auto-reloading is working.
On VS Code, click the Remote button at bottom left > Close remote connection.
docker-compose down |
In terminal, run the command above. It will shutdown and remove container (as you can see it disappears from Docker Desktop > Containers / Apps)
![]()
Note: This guide is based on VS Code. I've also tried IntelliJ IDEA (including PyCharm), but unfortunately it doesn't work on my laptop. If interested, see the link below under "Read more"
On VS Code, make sure you've installed these two extensions:
Remote - ContainersPython
After installing, you should see a button for this extension at the bottom-left corner of VS Code
Launch docker (you don't need to start the project container)
Click the remote container button > Open folder in container > Open your working directory with Dockerfile inside the repo. For instance, for backend-offline subteam, choose backend-offline/dev-dashboard/dashboard-backend

You should now see a progress notification at the bottom-right corner. Note that this will take a minute (Only for the first time opening the working directory. Next time it would start very quickly).


When completed, you'll notice VS Code has deployed an image (name starting with vsc-) in your docker, and has inserted/started an container (name including some random scientist/mathematician).

Click the button to the right of the container button, to choose your interpreter/SDK.
Note: If you don't see the button:
For python, click the area, which shows Python 3.6.8 64-bit above, and choose the interpreter Python 3.6.8 64-bit (it should be at /usr/local/bin/python)
Now you're ready to develop, run, and debug in container!
To exit, simple click the remote container button at the bottom-left corner of VS Code > Close Remote Connection.
{'_id': ObjectId('5f8771822ca2e28e9b5572df'), 'test_field': 'test_value'}
Linux-4.19.76-linuxkit-x86_64-with#1 SMP Tue May 26 11:42:35 UTC 2020 |
I've included a simple code in your repo:
master branch, at backend-offline/dev-dashboard/dashboard-backend/temp_container_test_run/container_test_run.pymaster branch, at backend-online/dev-backend/flask_docker/temp_container_test_run/container_test_run.pyIf you run it, it should show in terminal the same output as above. Note the 2nd line Linux shows it's been run in container (not local machine of Mac OS/Windows)
Everything you've coded is done in the same git repo.
If you choose to stop the container after finish coding, it's alright. Next time VS Code will automatically start it when you open the working directory as in steps above
Guide from VS code: https://code.visualstudio.com/docs/remote/create-dev-container
Guide from JetBrains (IntelliJ IDEA, PyCharm): https://www.jetbrains.com/help/idea/configuring-remote-python-sdks.html#Docker
|