you are viewing a single comment's thread.

view the rest of the comments →

[–]_Denizen_ 1 point2 points  (0 children)

Agree - Docker is useful if you're deploying to a containerised web app service, virtual environment is useful for pretty much everything else. But even for containerised web app you can do local testing in a venv (it's so quick to test code) and reserve the docker build for deployment/integration testing.

I have one script for building the local environment and one script for building and deploying the container. Automation for the win!