We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5addf51 commit d25fdbbCopy full SHA for d25fdbb
1 file changed
docker-compose.yml
@@ -1,14 +1,18 @@
1
services:
2
app:
3
image: python:3.14-slim
4
- command: mkdocs serve -a 0.0.0.0:8000
+ command: python -m mkdocs serve -a 0.0.0.0:8000 --watch-theme --livereload
5
entrypoint: /app/docker-entrypoint.sh
6
working_dir: /app
7
ports:
8
- 8000:8000
9
volumes:
10
- .:/app
11
- - python-packages:/usr/local/lib/python3.14/site-packages/
+ - pip-cache:/root/.cache/pip
12
+ environment:
13
+ - PYTHONUNBUFFERED=1
14
+ stdin_open: true
15
+ tty: true
16
17
- python-packages:
18
+ pip-cache:
0 commit comments