Docker CLI on Windows: config.json path?

2.3k Views Asked by At

According to https://docs.docker.com/engine/reference/commandline/registry_history/ , some experimental features of the Docker CLI can be enabled by editing the config.json file.

But, on Windows, where is the config.json file located?

2

There are 2 best solutions below

0
On BEST ANSWER

Finally, I found the config.json file in:

C:\Users\<username>\.docker
0
On

Using Docker-CE 25.0.4, on Windows

Navigate to: C:\ProgramData\Docker\

Create a folder called "config"

Within the config folder, create a text file called "daemon.json"

Ensure it is not daemon.json.txt !!! Show your file extensions...

Then you can add content like:

{
    "insecure-registries": ["172.29.229.8:5000"],
    "allow-nondistributable-artifacts": ["172.29.229.8:5000"]
}