Last active
May 23, 2023 09:19
-
-
Save jcallin/5dcb6fcc3b250979aaa88a28567475fe to your computer and use it in GitHub Desktop.
Install s3fs on Alpine Linux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apk update && apk add git | |
apk add build-base automake autoconf libxml fuse-dev curl-dev | |
git clone https://github.com/s3fs-fuse/s3fs-fuse.git | |
cd s3fs-fuse | |
./autogen.sh | |
./configure | |
make | |
make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
So I rewrite: