Skip to content

Commit 22093b0

Browse files
adding fuse-fs (#33)
* adding fuse-fs * Added explanation Co-authored-by: ilia-medvedev-codefresh <ilia.medvedev@codefresh.io> --------- Co-authored-by: ilia-medvedev-codefresh <ilia.medvedev@codefresh.io>
1 parent 3cb26ea commit 22093b0

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ FROM docker:${DOCKER_VERSION}-dind
2626

2727
RUN echo 'http://dl-cdn.alpinelinux.org/alpine/v3.11/main' >> /etc/apk/repositories \
2828
&& apk upgrade \
29-
&& apk add bash jq --no-cache \
29+
# Add fuse-overlayfs for comaptibility with rootless. Volumes created with rootless might use fuse-overlay formatted volumes. If those volumes are later used by dind that runs with root it'll require fuse-overlay to be able to read the volume
30+
&& apk add bash fuse-overlayfs jq --no-cache \
3031
&& rm -rf /var/cache/apk/*
3132

3233
COPY --from=node-exporter /bin/node_exporter /bin/

service.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version: 1.25.4
1+
version: 1.25.5

0 commit comments

Comments
 (0)