You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: index.rst
+34-11
Original file line number
Diff line number
Diff line change
@@ -103,20 +103,43 @@ When trying to launch a testcontainer from within a Docker container, e.g., in c
103
103
1. The container has to provide a docker client installation. Either use an image that has docker pre-installed (e.g. the `official docker images <https://hub.docker.com/_/docker>`_) or install the client from within the `Dockerfile` specification.
104
104
2. The container has to have access to the docker daemon which can be achieved by mounting `/var/run/docker.sock` or setting the `DOCKER_HOST` environment variable as part of your `docker run` command.
105
105
106
+
Private Docker registry
107
+
-----------------------
108
+
109
+
Using a private docker registry requires the `DOCKER_AUTH_CONFIG` environment variable to be set. `official documentation <https://docs.docker.com/engine/reference/commandline/login/#credential-helpers>`
110
+
111
+
The value of this variable should be a JSON string containing the authentication information for the registry.
112
+
113
+
In order to generate the JSON string, you can use the following command:
0 commit comments