across/docker/trojan-go/Dockerfile

26 lines
958 B
Docker
Raw Normal View History

# Dockerfile for trojan-go based alpine
2021-06-19 15:51:45 +09:00
# Copyright (C) 2019 - 2021 Teddysun <i@teddysun.com>
# Reference URL:
# https://github.com/p4gefau1t/trojan-go
2021-06-19 15:51:45 +09:00
# https://github.com/v2fly/v2ray-core
# https://github.com/v2fly/geoip
# https://github.com/v2fly/domain-list-community
FROM alpine:latest
LABEL maintainer="Teddysun <i@teddysun.com>"
COPY trojan-go.sh /root/trojan-go.sh
COPY config.json /etc/trojan-go/config.json
RUN set -ex \
&& apk add --no-cache tzdata ca-certificates \
&& chmod +x /root/trojan-go.sh \
&& /root/trojan-go.sh \
&& rm -fv /root/trojan-go.sh \
2021-06-19 15:51:45 +09:00
&& mkdir -p /usr/share/trojan-go \
&& wget -O /usr/share/trojan-go/geosite.dat https://github.com/v2fly/domain-list-community/releases/latest/download/dlc.dat \
&& wget -O /usr/share/trojan-go/geoip.dat https://github.com/v2fly/geoip/releases/latest/download/geoip.dat
VOLUME /etc/trojan-go
ENV TZ=Asia/Shanghai
2020-06-13 18:06:03 +09:00
CMD [ "/usr/bin/trojan-go", "-config", "/etc/trojan-go/config.json" ]