You are viewing the documentation for an earlier version of CLion.
Docker toolchain
Last modified: 19 January 2022
For the purpose of development in Docker containers, CLion provides full Docker integration via the dedicated Docker toolchain. Watch this video to learn more:
Sample Dockerfile
To help you get started with Docker development in CLion, we created an example Dockerfile for the case of Ubuntu base image. You can copy this file to your project and adjust for your needs or just use it as a reference.
The example file includes the following lines and sections:
In the comments at the top, you can find the commands for building the container.
The FROM ubuntu:20.04 line refers to the container's base image.
The apt-get part installs all the toolchain dependencies into the container. Here you can adjust the tools and their versions.
Depending on your platform and your Docker setup, you may need to run it using sudo.
This command will build the Ubuntu base image with proper toolchain dependencies.
Create a Docker toolchain
Go to Settings / Preferences | Build, Execution, Deployment | Toolchains.
Click and select Docker:
Click the screw nut icon next to the Docker field to add a Docker image:
note
Out of the options listed in Connect to Docker daemon with, only the local one (first) is currently supported in CLion.
You can also configure a Docker server in Settings / Preferences | Build, Execution, Deployment | Docker and then select it in the toolchain settings.
Select the Docker Image and wait until the tools detection finishes. Then save the settings.
tip
See Docker plugin integration for description of the Services tool window and Docker-specific IDE actions.
Build, run, debug with a Docker toolchain
After configuring a Docker toolchain, you can select it in CMake profiles or in Makefile settings. Alternatively, move the toolchain to the top of the list to make it default.
The project folder will mounted to the Docker container and building, running, and debugging will be performed in it. CLion will start the container and shut it down after the command is executed. The project folder will be mounted into the /tmp/ProjectFolder directory in the container.
Improve Docker toolchain performance on Windows
To get better performance on Windows, we recommend using Docker with the WSL 2 backend.
In the Docker desktop application, navigate to Settings | Resources | WSL Integration and enable integration with your WSL distribution (for example, ubuntu-20.04).
Place the project sources into the WSL filesystem (for example, \\wsl$\ubuntu-20.04\tmp\llvm), then open it in CLion and configure a Docker toolchain.
Alternative workflow: develop in Docker using Full Remote mode