Sign inSign up

saracen9/fuse-builder

By saracen9

Updated over 6 years ago

Build libfuse from source in a docker container

Image
1

209

saracen9/fuse-builder repository overview

docker-fuse-builder

A docker container designed to build libfuse from source so that it can be used in other containers statically.

Example useage on CoreOS in order to make fusermount available to the host.

# create /opt/bin if it doesn't yet exist
sudo mkdir -p /opt/bin

# run the container and copy out the binary
sudo docker run -d --name fuse saracen9/fuse-builder sleep && \
    sudo docker cp fuse:/usr/local/bin/fusermount3 /opt/bin/fusermount && \
    docker rm -f fuse

You can now run rclone mount .. or equivalent commands natively in CoreOS.

Tag summary

Content type

Image

Digest

Size

146.7 MB

Last updated

over 6 years ago

docker pull saracen9/fuse-builder