3x-ui/Dockerfile

66 lines
2 KiB
Text
Raw Normal View History

# ========================================================
# Stage: Builder
# ========================================================
2026-02-15 05:50:47 +00:00
FROM golang:1.22-alpine AS builder
2023-05-07 16:59:37 +00:00
WORKDIR /app
ARG TARGETARCH
RUN apk --no-cache --update add \
build-base \
gcc \
curl \
unzip
2023-05-07 16:59:37 +00:00
COPY . .
2023-05-08 02:22:48 +00:00
2024-01-27 09:26:10 +00:00
ENV CGO_ENABLED=1
ENV CGO_CFLAGS="-D_LARGEFILE64_SOURCE"
RUN go build -ldflags "-w -s" -o build/x-ui main.go
2026-02-15 05:50:47 +00:00
RUN if [ -f "./DockerInit.sh" ]; then chmod +x ./DockerInit.sh && ./DockerInit.sh "$TARGETARCH"; fi
2023-05-08 02:22:48 +00:00
# ========================================================
# Stage: Final Image of 3x-ui
# ========================================================
2026-02-15 05:50:47 +00:00
FROM alpine:latest
ENV TZ=Asia/Cairo
2023-05-07 16:59:37 +00:00
WORKDIR /app
2023-05-08 02:22:48 +00:00
RUN apk add --no-cache --update \
ca-certificates \
tzdata \
2024-01-27 09:26:10 +00:00
fail2ban \
bash \
curl \
openssl
2023-05-07 16:59:37 +00:00
2026-02-15 05:50:47 +00:00
# --------------------------------------------------------
# [هام] إضافة ملفات GeoIP و GeoSite لتجنب توقف السيرفر مستقبلاً
# --------------------------------------------------------
RUN mkdir -p /app/bin \
&& curl -L -o /app/bin/geoip.dat https://github.com/Loyalsoldier/v2ray-rules-dat/releases/latest/download/geoip.dat \
&& curl -L -o /app/bin/geosite.dat https://github.com/Loyalsoldier/v2ray-rules-dat/releases/latest/download/geosite.dat
2024-01-27 09:26:10 +00:00
COPY --from=builder /app/build/ /app/
2026-02-15 05:50:47 +00:00
# تأكدنا هنا من نسخ السكربتات الضرورية
2024-01-27 09:26:10 +00:00
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 \
2023-07-20 18:24:51 +00:00
&& sed -i "s/^\[ssh\]$/&\nenabled = false/" /etc/fail2ban/jail.local \
&& sed -i "s/^\[sshd\]$/&\nenabled = false/" /etc/fail2ban/jail.local \
&& sed -i "s/#allowipv6 = auto/allowipv6 = auto/g" /etc/fail2ban/fail2ban.conf
RUN chmod +x \
/app/DockerEntrypoint.sh \
/app/x-ui \
/usr/bin/x-ui
ENV XUI_ENABLE_FAIL2BAN="true"
2026-02-15 05:50:47 +00:00
ENV XRAY_LOCATION_ASSET=/app/bin/
2025-09-21 17:03:36 +00:00
EXPOSE 2053
VOLUME [ "/etc/x-ui" ]
2024-01-27 09:26:10 +00:00
CMD [ "./x-ui" ]
ENTRYPOINT [ "/app/DockerEntrypoint.sh" ]