http://www.quakelive.com/#!join/688917
This file contains hidden or 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
#!/bin/bash | |
set -e | |
#ARCH=aarch64 | |
ARCH=armhf | |
ARCH_COMPOSE=armv7 | |
DOCKER_VERSION=24.0.5 | |
COMPOSE_VERSION=2.20.2 | |
DOCKER_DIR=/volume1/@docker |
This file contains hidden or 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
# download the proper versions of s3fs and fuse | |
wget http://s3fs.googlecode.com/files/s3fs-1.61.tar.gz | |
wget http://downloads.sourceforge.net/project/fuse/fuse-2.X/2.8.4/fuse-2.8.4.tar.gz | |
# unpack them | |
tar -xzf s3fs-1.61.tar.gz | |
tar -xzf fuse-2.8.4.tar.gz | |
# install dependencies | |
yum install gcc libstdc++-devel gcc-c++ curl-devel libxml2-devel openssl-devel mailcap |