mirror of
https://github.com/teddysun/across.git
synced 2025-10-17 18:15:53 +08:00
Added hysteria Docker Image
This commit is contained in:
51
docker/hysteria/hysteria.sh
Normal file
51
docker/hysteria/hysteria.sh
Normal file
@@ -0,0 +1,51 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# This is a Shell script for hysteria based alpine with Docker image
|
||||
#
|
||||
# Copyright (C) 2022 Teddysun <i@teddysun.com>
|
||||
#
|
||||
# Reference URL:
|
||||
# https://github.com/HyNetwork/hysteria
|
||||
|
||||
PLATFORM=$1
|
||||
if [ -z "$PLATFORM" ]; then
|
||||
ARCH="amd64"
|
||||
else
|
||||
case "$PLATFORM" in
|
||||
linux/386)
|
||||
ARCH="386"
|
||||
;;
|
||||
linux/amd64)
|
||||
ARCH="amd64"
|
||||
;;
|
||||
linux/arm/v6)
|
||||
ARCH="arm6"
|
||||
;;
|
||||
linux/arm/v7)
|
||||
ARCH="arm7"
|
||||
;;
|
||||
linux/arm64|linux/arm64/v8)
|
||||
ARCH="arm64"
|
||||
;;
|
||||
linux/ppc64le)
|
||||
ARCH="ppc64le"
|
||||
;;
|
||||
linux/s390x)
|
||||
ARCH="s390x"
|
||||
;;
|
||||
*)
|
||||
ARCH=""
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
[ -z "${ARCH}" ] && echo "Error: Not supported OS Architecture" && exit 1
|
||||
# Download binary file
|
||||
HYSTERIA_FILE="hysteria_linux_${ARCH}"
|
||||
|
||||
echo "Downloading binary file: ${HYSTERIA_FILE}"
|
||||
wget -O /usr/bin/hysteria https://dl.lamp.sh/files/${HYSTERIA_FILE} > /dev/null 2>&1
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "Error: Failed to download binary file: ${HYSTERIA_FILE}" && exit 1
|
||||
fi
|
||||
echo "Download binary file: ${HYSTERIA_FILE} completed"
|
||||
chmod +x /usr/bin/hysteria
|
Reference in New Issue
Block a user