mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
d1e6cfa6a1
Usually a diagnostic session wants to check the local state without this flag the network is joined and left every iteration altering actually the daemon status. Also if the diagnostic client is used against a live node, the network leave has a very bad side effect of kicking the node out of the network killing its internal status. For the above reason introducing the flag -a to be explicit so that the current state is always preserved Signed-off-by: Flavio Crisciani <flavio.crisciani@docker.com>
5 lines
167 B
Text
5 lines
167 B
Text
FROM docker:17.12-dind
|
|
RUN apk add --no-cache curl
|
|
ENV DIND_CLIENT=true
|
|
COPY daemon.json /etc/docker/daemon.json
|
|
COPY diagnosticClient /usr/local/bin/diagnosticClient
|