-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🚀 Some improvements for x-ui.sh and ip job (#665)
- Loading branch information
1 parent
f726474
commit 1028319
Showing
17 changed files
with
385 additions
and
251 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/sh | ||
|
||
# Start fail2ban | ||
fail2ban-client -x -f start | ||
|
||
# Run x-ui | ||
exec /app/x-ui |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,28 @@ | ||
#!/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 | ||
|
||
case $1 in | ||
amd64) | ||
ARCH="64" | ||
FNAME="amd64" | ||
;; | ||
arm64) | ||
ARCH="arm64-v8a" | ||
FNAME="arm64" | ||
;; | ||
*) | ||
ARCH="64" | ||
FNAME="amd64" | ||
;; | ||
esac | ||
|
||
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 ../../ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,47 @@ | ||
#Build latest x-ui from source | ||
# ======================================================== | ||
# Stage: Builder | ||
# ======================================================== | ||
FROM --platform=$BUILDPLATFORM golang:1.20.4-alpine AS builder | ||
WORKDIR /app | ||
ARG TARGETARCH | ||
RUN apk --no-cache --update add build-base gcc wget unzip | ||
ARG TARGETARCH | ||
ENV CGO_ENABLED=1 | ||
|
||
RUN apk --no-cache --update add \ | ||
build-base \ | ||
gcc \ | ||
wget \ | ||
unzip | ||
|
||
COPY . . | ||
RUN env CGO_ENABLED=1 go build -o build/x-ui main.go | ||
RUN ./DockerInit.sh "$TARGETARCH" | ||
|
||
RUN go build -o build/x-ui main.go | ||
RUN ./DockerInit.sh "$TARGETARCH" | ||
|
||
#Build app image using latest x-ui | ||
# ======================================================== | ||
# Stage: Final Image of 3x-ui | ||
# ======================================================== | ||
FROM alpine | ||
ENV TZ=Asia/Tehran | ||
WORKDIR /app | ||
|
||
RUN apk add ca-certificates tzdata | ||
RUN apk add --no-cache --update \ | ||
ca-certificates \ | ||
tzdata \ | ||
fail2ban | ||
|
||
COPY --from=builder /app/build/ /app/ | ||
COPY --from=builder /app/DockerEntrypoint.sh /app/ | ||
COPY --from=builder /app/x-ui.sh /usr/bin/x-ui | ||
|
||
# Configure fail2ban | ||
RUN rm -f /etc/fail2ban/jail.d/alpine-ssh.conf \ | ||
&& cp /etc/fail2ban/jail.conf /etc/fail2ban/jail.local \ | ||
&& sed -i "s/^\[ssh\]$/&\nenabled = false/" /etc/fail2ban/jail.local | ||
|
||
RUN chmod +x \ | ||
/app/DockerEntrypoint.sh \ | ||
/app/x-ui \ | ||
/usr/bin/x-ui | ||
|
||
VOLUME [ "/etc/x-ui" ] | ||
ENTRYPOINT [ "/app/x-ui" ] | ||
ENTRYPOINT [ "/app/DockerEntrypoint.sh" ] |
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
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
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
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
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
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
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
Oops, something went wrong.