1
0
Fork 0

Added mkdocs container stuff for local testing

-Skip G.
This commit is contained in:
Skip Grube 2023-10-15 19:29:47 -04:00
parent 4e56a76065
commit 85e1e73ab6
2 changed files with 27 additions and 0 deletions

15
Dockerfile Normal file
View File

@ -0,0 +1,15 @@
FROM rockylinux:9
RUN dnf update -y &&\
dnf install -y git python3-pip &&\
dnf clean all
# bind volume $CWD > /wiki exists in docker-compose.yml
RUN mkdir /wiki
COPY requirements.txt /wiki
WORKDIR /wiki
RUN pip3 install -r requirements.txt
EXPOSE 8000
CMD mkdocs serve -a 0.0.0.0:8000

12
docker-compose.yml Normal file
View File

@ -0,0 +1,12 @@
version: '3.2'
services:
wiki:
volumes:
- type: bind
source: .
target: /wiki
build:
context: .
ports:
- 8000:8000