Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHossein Abaiyani <40549604+hosseinabaiyani@users.noreply.github.com>2023-05-11 12:38:44 +0300
committerGitHub <noreply@github.com>2023-05-11 12:38:44 +0300
commitad1aa5b2f9e194c84381212fc6f9896810050fe1 (patch)
treeb38ad3f852160f20e5dca21b6c0d527626a1a8fb /DockerInit.sh
parent46ef8c503e33992b9c06352a2034d159d7a1a076 (diff)
Cleaner Docker file with much lighter base image (#387)
* updated dockerfile * updated dockerfile * Update Dockerfile added platform * added iran.dat * added iran.dat --------- Co-authored-by: Hossein Abaiyani <hossein.abaiyani@arvancloud.com>
Diffstat (limited to 'DockerInit.sh')
-rwxr-xr-xDockerInit.sh22
1 files changed, 22 insertions, 0 deletions
diff --git a/DockerInit.sh b/DockerInit.sh
new file mode 100755
index 00000000..0b83457c
--- /dev/null
+++ b/DockerInit.sh
@@ -0,0 +1,22 @@
+#!/bin/sh
+if [ $1 == "amd64" ]; then
+ ARCH="64";
+ FNAME="amd64";
+elif [ $1 == "arm64" ]; then
+ ARCH="arm64-v8a"
+ FNAME="arm64";
+else
+ ARCH="64";
+ FNAME="amd64";
+fi
+mkdir -p build/bin
+cd build/bin
+wget "https://github.com/mhsanaei/xray-core/releases/latest/download/Xray-linux-${ARCH}.zip"
+unzip "Xray-linux-${ARCH}.zip"
+rm -f "Xray-linux-${ARCH}.zip" geoip.dat geosite.dat iran.dat
+mv xray "xray-linux-${FNAME}"
+wget "https://github.com/Loyalsoldier/v2ray-rules-dat/releases/latest/download/geoip.dat"
+wget "https://github.com/Loyalsoldier/v2ray-rules-dat/releases/latest/download/geosite.dat"
+wget "https://github.com/bootmortis/iran-hosted-domains/releases/latest/download/iran.dat"
+
+cd ../../ \ No newline at end of file