fly-apps/docker/Dockerfile

15 lines
326 B
Docker
Raw Normal View History

2022-08-10 02:27:31 +00:00
FROM docker:dind
2021-06-24 14:22:54 +00:00
2022-08-10 02:27:31 +00:00
RUN apk add bash ip6tables pigz sysstat procps lsof gcompat
2021-06-24 14:22:54 +00:00
COPY etc/docker/daemon.json /etc/docker/daemon.json
COPY ./entrypoint ./entrypoint
COPY ./docker-entrypoint.d/* ./docker-entrypoint.d/
ENV DOCKER_TMPDIR=/data/docker/tmp
ENTRYPOINT ["./entrypoint"]
2022-08-10 02:27:31 +00:00
CMD ["dockerd", "-p", "/var/run/docker.pid"]