Running Docker through PyCharm

Build and run a Docker container from your IDE.

Let’s start running the Docker application through PyCharm.

Open the Dockerfile and click on the Run icon → New Run Configuration

step1

step2

Under Modify options, click Enable BuildKit. According to the official documentation, BuildKit serves as an upgraded backend designed to supersede the traditional builder. As the default builder in Docker Desktop and Docker Engine starting from version 23.0, BuildKit introduces new features and enhances the performance of your builds.

IMPORTANT:

  • Make sure to run the latest version of Docker Desktop, as it comes pre-equipped with BuildKit.
  • There is a chance that you won't see the option of Enable BuildKit under Modify options if you are using latest version of PyCharm Professional. To know more check the documentation.

step2

step3

step4

Next, we should set up port binding. This function enables Docker to map a port on your machine to a corresponding port inside the container.

step5

step6

We will bind the container port and host port to 8000.

Once you are done with the configuration, go ahead and apply the changes and click Run.

step7

Starting the application may require a few seconds. The image displayed below is the Service tool window.

The Services tool window helps you manage services such as run/debug configurations, database sessions, and Docker connections.

step8

Once the application is up and running, you can easily manage it through PyCharm.

step9

Let’s check in the browser, by visiting localhost:8000

Woo Hoo! The app is running.

step10

You can now easily view live logs inside the container.

step11

The same goes for the compose.yaml.

step12

Amazing! Well, that wasn't so tough to run Docker inside the IDE. Next up is planning for production and preparing your application.