---
sourceDocument: Australia Build or modify applications
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/pt-BR/application-development

 Release :

    - australia

ft:locale :

    - pt-BR

ft:publication_title :

    - Australia Build or modify applications

ft:clusterId :

    - cadev

bundleId :

    - cadev

workflow :

    - Development, Data, and Analytics


---

# Configure Docker for Headless Browser setup in Microsoft Windows

# Configure Docker for Headless Browser setup in Microsoft
Windows {#ariaid-title1}

* Versão de lançamento: Australia
* 
* Atualizado 12 de mar. de 2026
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 1 min. de leitura

Configure Docker Server to authenticate all requests.

## Antes de Iniciar

Complete Step 2: [Generate certificates for Headless Browser setup for Microsoft Windows](https://servicenow-prod.fluidtopics.net/SJbyi3AC8Bn0EF2tXKN9HA "Generate TLS/SSL certificates to secure the Docker REST API and authenticate HTTP requests.")

Role required: admin on your ServiceNow instance and local administrator on the host machine.

## Por Que e Quando Desempenhar Esta Tarefa

After creating your client and server keys, now you configure the Docker Server to authenticate all requests using those keys, and expose the Docker API on Port 2376.

## Procedimento

1. Configure Docker to use the certificates you generated in Step 2.
2. Find or create the `C:\ProgramData\docker\config\daemon.json` file.
3. Add the following properties to the daemon.json file.  
   Be sure to replace items in these commands with the correct paths to your certificates:  
   Nota:  
   The double slashes are important to copy exactly.

       {
       "tlscacert": "C:\\Users\\Administrator\\certs\\ca.pem",
       "tlscert": "C:\\Users\\Administrator\\certs\\server-cert.pem",
       "tlscert": "C:\\Users\\Administrator\\certs\\server-cert.pem",
       "tlskey": "C:\\Users\\Administrator\\certs\\server-key.pem",
       "tlsverify": true,
       "hosts": ["tcp://0.0.0.0:2376", "npipe://"]
       }

   To learn more, see [Configure the Docker daemon](https://docs.docker.com/config/daemon/#configure-the-docker-daemon).
4. In administrator PowerShell, run `restart-service *docker*`
{#headless-browser-configure-docker-windows__steps_x1t_wwt_hpb}
**Tópico anterior:** [Generate certificates for Headless Browser setup for Microsoft Windows](https://servicenow-prod.fluidtopics.net/SJbyi3AC8Bn0EF2tXKN9HA "Generate TLS/SSL certificates to secure the Docker REST API and authenticate HTTP requests.")  
**Próximo tópico:** [Create the Docker image and containers for Headless Browser setup in Microsoft Windows](https://servicenow-prod.fluidtopics.net/ay02JZoqGTh8V0qduEZrtg "Pull the Docker image from the Public Registry.")

