Skip to content

Commit 72ef292

Browse files
committed
Added fake auth.json
1 parent de6d50b commit 72ef292

File tree

3 files changed

+29
-0
lines changed

3 files changed

+29
-0
lines changed

Dockerfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
FROM python:3-slim
2+
COPY ./. /docs/
3+
WORKDIR /docs/
4+
RUN pip install -r requirements.txt
5+
CMD ["mkdocs", "serve", "--dev-addr", "0.0.0.0:8888"]

auth.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"bitbucket-oauth": {},
3+
"github-oauth": {
4+
"github.com": "fake"
5+
},
6+
"gitlab-oauth": {},
7+
"gitlab-token": {},
8+
"http-basic": {
9+
"updates.ibexa.co": {
10+
"username": "fake",
11+
"password": "fake"
12+
}},
13+
"bearer": {}
14+
}

compose.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
services:
2+
mkdocs:
3+
build: .
4+
environment:
5+
- MKDOCS_PORT=8000
6+
ports:
7+
- "${MKDOCS_PORT}:${MKDOCS_PORT}"
8+
volumes:
9+
- .:/docs
10+
command: mkdocs serve --dev-addr=0.0.0.0:${MKDOCS_PORT}

0 commit comments

Comments
 (0)