1
0
mirror of https://github.com/containous/traefik.git synced 2025-09-06 05:44:21 +03:00

Compare commits

...

5 Commits

Author SHA1 Message Date
mmatur
7b6f1c2e09 fix: docs build trusted host 2024-05-16 21:08:36 +02:00
mmatur
631568cc01 fix: docs build alpine version 2024-05-16 16:24:22 +02:00
Fernandez Ludovic
145a485255 fix: mkdocs.yml 2023-01-23 11:04:07 +01:00
mmatur
d3839eae6a feat: add dockerfile for documentation 2021-10-05 10:23:25 +02:00
Fernandez Ludovic
3c96dd3014 doc: fix version in requirements.txt 2018-09-28 23:16:28 +02:00
3 changed files with 13 additions and 5 deletions

10
docs.Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM alpine:3.7
ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.local/bin
COPY requirements.txt /mkdocs/
WORKDIR /mkdocs
VOLUME /mkdocs
RUN apk --no-cache --no-progress add py-pip \
&& pip install --trusted-host pypi.python.org --user -r requirements.txt

View File

@@ -25,9 +25,6 @@ google_analytics:
# Options
extra:
logo: img/traefik.logo.png
palette:
primary: 'blue'
accent: 'light blue'
feature:
tabs: false
palette:

View File

@@ -1,4 +1,5 @@
mkdocs==0.16.3
pymdown-extensions>=1.4
mkdocs-bootswatch>=0.4.0
pymdown-extensions==4.12
mkdocs-bootswatch==0.4.0
mkdocs-material==1.12.2
markdown==2.6.11