Skip to content

Commit fe1c6fc

Browse files
authored
Merge branch 'main' into SP-189
2 parents 2bba7ee + 3f80da3 commit fe1c6fc

5 files changed

Lines changed: 5 additions & 20 deletions

File tree

.editorconfig

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,3 @@ root = true
44
charset = utf-8
55
end_of_line = lf
66
insert_final_newline = true
7-
8-
[*.css]
9-
indent_style = space
10-
indent_size = 2
11-
12-
[*.html]
13-
indent_style = space
14-
indent_size = 2

Dockerfile

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
FROM python:3.14-rc-alpine
1+
FROM python:3.14-rc-slim
22

33
WORKDIR /usr/src/app
44

55
COPY requirements.txt ./
66
RUN pip install --no-cache-dir -r requirements.txt
77

8-
CMD ["mkdocs", "serve"]
9-
10-
EXPOSE 8000
8+
CMD ["mkdocs", "serve", "--dev-addr=0.0.0.0:8000"]

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,5 @@ These docs are generated using [MkDocs](https://www.mkdocs.org/).
99
You can contribute to it by submitting a PR to this repository.
1010

1111
If you use VSCode, you can [open this repo in a dev container](https://code.visualstudio.com/docs/devcontainers/containers#_quick-start-open-an-existing-folder-in-a-container), it will build and serve the docs on localhost:8000 and watch for any changes.
12+
13+
Alternatively you can run `docker compose up` and browser to [localhost:8000](http://localhost:8000).

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
22
mkdocs:
33
build: .
4-
command: mkdocs serve
4+
command: mkdocs serve --dev-addr=0.0.0.0:8000
55
ports:
66
- 8000:8000
77
volumes:

requirements.txt

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,2 @@
11
mkdocs
22
pymdown-extensions
3-
mkdocs-minify-plugin
4-
mkdocs-git-revision-date-localized-plugin
5-
mkdocs-include-dir-to-nav
6-
mkdocs-git-committers-plugin-2
7-
mkdocs-redirects
8-
mkdocs-awesome-pages-plugin
9-
mkdocs-nav-weight

0 commit comments

Comments
 (0)