MAke dind container use docker registry

This commit is contained in:
Neshura 2024-01-01 18:18:39 +00:00
parent 7c59d1a34b
commit 7a503fae69

View file

@ -1,4 +1,6 @@
FROM docker:dind
RUN apk add --no-cache bash nodejs npm
RUN mkdir /etc/docker
RUN echo '"registry-mirrors": ["https://docker-cache.neshweb.net"]' >> /etc/docker/daemon.json
ENTRYPOINT ["dockerd-entrypoint.sh"]
CMD []