Compare commits
No commits in common. "570090acbcbb143c0b55bb69d464f8249ec176f9" and "51da297da37bd08a60ccff50a12ac914796cd3ee" have entirely different histories.
570090acbc
...
51da297da3
6 changed files with 2 additions and 55 deletions
|
|
@ -17,8 +17,8 @@ RUN mkdir /mkdocs
|
||||||
WORKDIR /mkdocs
|
WORKDIR /mkdocs
|
||||||
|
|
||||||
COPY root /etc/crontabs/root
|
COPY root /etc/crontabs/root
|
||||||
COPY mkdocs-git /bin/mkdocs-git
|
COPY git-mkdocs /bin/git-mkdocs
|
||||||
RUN chmod 744 /bin/mkdocs-git
|
RUN chmod 744 /bin/git-mkdocs
|
||||||
|
|
||||||
RUN touch /docker-entrypoint.d/cron.sh \
|
RUN touch /docker-entrypoint.d/cron.sh \
|
||||||
&& echo "exec crond" > /docker-entrypoint.d/cron.sh \
|
&& echo "exec crond" > /docker-entrypoint.d/cron.sh \
|
||||||
|
|
@ -1,15 +0,0 @@
|
||||||
server {
|
|
||||||
listen $PORT;
|
|
||||||
listen [::]:${PORT};
|
|
||||||
server_name localhost;
|
|
||||||
|
|
||||||
location / {
|
|
||||||
root /usr/share/nginx/html;
|
|
||||||
index index.html index.htm;
|
|
||||||
}
|
|
||||||
|
|
||||||
error_page 500 502 503 504 /50x.html;
|
|
||||||
location = /50.html {
|
|
||||||
root /usr/share/nginx/html;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
exec 2>&1
|
|
||||||
find /mkdocs/repo || git clone $GIT_REPO_URL /mkdocs/repo
|
|
||||||
cd /mkdocs/repo && git pull
|
|
||||||
|
|
||||||
for lang in $WIKI_LANG
|
|
||||||
do
|
|
||||||
mkdocs build -f /mkdocs/repo/config/${lang}/mkdocs.yml -d /usr/share/nginx/html/${lang}
|
|
||||||
done
|
|
||||||
|
|
@ -1,25 +0,0 @@
|
||||||
FROM nginx:alpine
|
|
||||||
|
|
||||||
ENV PORT="80"
|
|
||||||
COPY default.conf.env /etc/nginx/conf.d/default.conf.env
|
|
||||||
|
|
||||||
RUN apk add envsubst \
|
|
||||||
&& touch /docker-entrypoint.d/port.sh \
|
|
||||||
&& echo "exec envsubst < /etc/nginx/conf.d/default.conf.env > /etc/nginx/conf.d/default.conf && nginx -s reload" > /docker-entrypoint.d/port.sh \
|
|
||||||
&& chmod 776 /docker-entrypoint.d/port.sh
|
|
||||||
|
|
||||||
RUN apk add git \
|
|
||||||
&& apk add mkdocs \
|
|
||||||
&& apk add mkdocs-material \
|
|
||||||
&& apk add py3-regex
|
|
||||||
|
|
||||||
RUN mkdir /mkdocs
|
|
||||||
WORKDIR /mkdocs
|
|
||||||
|
|
||||||
COPY root /etc/crontabs/root
|
|
||||||
COPY mkdocs-git-multilang /bin/mkdocs-git-multilang
|
|
||||||
RUN chmod 744 /bin/mkdocs-git-multilang
|
|
||||||
|
|
||||||
RUN touch /docker-entrypoint.d/cron.sh \
|
|
||||||
&& echo "exec crond" > /docker-entrypoint.d/cron.sh \
|
|
||||||
&& chmod 776 /docker-entrypoint.d/cron.sh
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
# do daily/weekly/monthly maintanance
|
|
||||||
# min hour day month weekday command
|
|
||||||
* * * * * mkdocs-git-multilang
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue