--- description: Learn how to configure your Docker Engine to push and pull images from Docker Trusted Registry. keywords: - docker, registry, TLS, certificates menu: main: identifier: dtr_configure_engine parent: dtr_menu_repos_and_images weight: 0 title: Configure your Docker Engine --- # Configure your Docker Engine By default Docker Engine uses TLS when pushing and pulling images to an image registry like Docker Trusted Registry. If DTR is using the default configurations or was configured to use self-signed certificates, you need to configure your Docker Engine to trust DTR. Otherwise, when you try to login or push and pull images to DTR, you'll get an error: ```bash $ docker login x509: certificate signed by unknown authority ``` The first step to make your Docker Engine trust the certificate authority used by DTR is to get the DTR CA certificate. Then you configure your operating system to trust that certificate. ## Configure your host ### Ubuntu/ Debian ```bash # Download the DTR CA certificate $ curl -k https:///ca -o /usr/local/share/ca-certificates/.crt # Refresh the list of certificates to trust $ sudo update-ca-certificates # Restart the Docker daemon $ sudo service docker restart ``` ### RHEL/ CentOS ```bash # Download the DTR CA certificate $ curl -k https:///ca -o /etc/pki/ca-trust/source/anchors/.crt # Refresh the list of certificates to trust $ sudo update-ca-trust # Restart the Docker daemon $ sudo /bin/systemctl restart docker.service ``` ### Boot2Docker 1. Login into the virtual machine with ssh: ```bash docker-machine ssh ``` 2. Create the `bootsync.sh` file, and make it executable: ```bash sudo touch /var/lib/boot2docker/bootsync.sh sudo chmod 755 /var/lib/boot2docker/bootsync.sh ``` 3. Add the following content to the `bootsync.sh` file. You can use nano or vi for this. ```bash #!/bin/sh cat /var/lib/boot2docker/server.pem >> /etc/ssl/certs/ca-certificates.crt ``` 4. Add the DTR CA certificate to the `server.pem` file: ```bash curl -k https:///ca | sudo tee -a /var/lib/boot2docker/server.pem ``` 5. Run `bootsync.sh` and restart the Docker daemon: ```bash sudo /var/lib/boot2docker/bootsync.sh sudo /etc/init.d/docker restart ``` ## Login into DTR To validate that your Docker daemon trusts DTR, trying authenticating against DTR. ```bash $ docker login ``` ## Where to go next * [Pull an image from DTR](pull-an-image.md)