mount.objectivefs requires fusermount to work
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-05-25 21:40:39 +02:00
parent a5ee20e337
commit f2dbf5188b
2 changed files with 3 additions and 2 deletions

View File

@@ -14,5 +14,6 @@ COPY --from=builder /usr/local/src/objectivefs-docker-volume/bin/objectivefs-doc
COPY bin/mount.objectivefs /sbin/
COPY config.json /
RUN mkdir -p /run/docker/plugins && \
RUN apt-get update && apt-get install -y fuse && rm -rf /var/lib/apt/lists/* && \
mkdir -p /run/docker/plugins && \
chmod +x /sbin/mount.objectivefs

View File

@@ -244,6 +244,6 @@ func NewLogWriter() *LogWriter {
}
func (lw LogWriter) Write(p []byte) (n int, err error) {
log.Infoln(p)
log.Println(p)
return len(p), nil
}