forked from alireza0/x-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[docker] add initial files alireza0#221
- Loading branch information
Showing
3 changed files
with
26 additions
and
11 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,17 @@ | ||
#!/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 | ||
wget "https://github.com/XTLS/Xray-core/releases/download/v1.8.1/Xray-linux-${ARCH}.zip" | ||
wget "https://github.com/Loyalsoldier/v2ray-rules-dat/releases/latest/download/geoip.dat" -o build/bin/geoip.dat | ||
wget "https://github.com/Loyalsoldier/v2ray-rules-dat/releases/latest/download/geosite.dat" -o build/bin/geosite.dat | ||
mv xray "build/bin/xray-linux-${FNAME}" | ||
mv main build/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,18 @@ | ||
FROM golang:1.20-alpine AS builder | ||
WORKDIR /app | ||
ENV CGO_ENABLED 1 | ||
RUN apk add gcc && apk --no-cache --update add build-base | ||
ARG TARGETARCH | ||
RUN apk --no-cache --update add build-base gcc wget | ||
COPY . . | ||
RUN go build main.go | ||
RUN env CGO_ENABLED=1 go build main.go | ||
RUN ./DockerInitFiles.sh "$TARGETARCH" | ||
|
||
FROM alpine | ||
LABEL org.opencontainers.image.authors="[email protected]" | ||
ENV TZ=Asia/Tehran | ||
WORKDIR /app | ||
|
||
RUN apk add ca-certificates tzdata && mkdir bin | ||
RUN apk add ca-certificates tzdata | ||
|
||
# Download latest rule files | ||
ADD https://github.com/Loyalsoldier/v2ray-rules-dat/releases/latest/download/geoip.dat \ | ||
https://github.com/Loyalsoldier/v2ray-rules-dat/releases/latest/download/geosite.dat \ | ||
bin/ | ||
|
||
COPY --from=builder /app/main /app/x-ui | ||
COPY --from=builder /app/build/ /app/ | ||
VOLUME [ "/etc/x-ui" ] | ||
CMD [ "./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