You can't see it, but I'm making a very angry face right now

This commit is contained in:
2025-05-27 09:22:34 +03:00
parent cbe0d05908
commit 6b36f0a3e0

View File

@@ -1,6 +1,11 @@
FROM docker:dind FROM docker:dind
COPY ./setup-daemon.sh /bin/ # COPY ./setup-daemon.sh /bin/
RUN chmod +x /bin/setup-daemon.sh # RUN chmod +x /bin/setup-daemon.sh
ENTRYPOINT ["/bin/setup-daemon.sh"] # ENTRYPOINT ["/bin/setup-daemon.sh"]
RUN mkdir -p /etc/docker && \
echo '{ "insecure-registries": ["http://nexus-repo-nexus-repository-manager.default.svc.cluster.local:5000"] }' > /etc/docker/daemon.json
CMD ["dockerd"]