📖 增加配置example和文档说明

This commit is contained in:
iouAkira
2020-12-11 16:56:36 +08:00
parent 0c3681c4a1
commit fab8b40d8d
10 changed files with 287 additions and 78 deletions

View File

@@ -1,23 +1,32 @@
FROM alpine
MAINTAINER Akira <e.akimoto.akira@gmail.com>
LABEL AUTHOR="Akira <e.akimoto.akira@gmail.com>" \
VERSION=0.1.2 \
UPDATE_CONTENT="更新内容较多,重新阅读仓库[Readme](https://github.com/lxk0301/jd_scripts/tree/master/docker),更新镜像并更新配置后使用。"
RUN set -ex \
&& apk update && apk upgrade\
&& apk add --no-cache tzdata moreutils git nodejs npm\
&& apk add --no-cache tzdata moreutils git nodejs npm curl jq\
&& ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \
&& echo "Asia/Shanghai" > /etc/timezone
RUN git clone https://github.com/lxk0301/jd_scripts /scripts \
RUN git clone https://github.com/iouAkira/jd_scripts /scripts \
&& cd /scripts \
&& git checkout dev \
&& mkdir logs \
&& npm install \
&& cd /tmp \
&& npm install request
ENV CRONTAB_LIST_FILE crontab_list_ts.sh
ENV BUILD_VERSION=0.1.2 \
DEFAULT_LIST_FILE=crontab_list.sh \
CUSTOM_LIST_MERGE_TYPE=append
RUN crontab /scripts/docker/crontab_list_ts.sh
# github action 构建
COPY ./docker/docker_entrypoint.sh /usr/local/bin
# 本地构建
# COPY ./docker_entrypoint.sh /usr/local/bin
# RUN chmod +x /usr/local/bin/docker_entrypoint.sh
WORKDIR /scripts
CMD ["node"]
ENTRYPOINT ["docker_entrypoint.sh"]