-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deployed 350bd4b with MkDocs version: 1.6.1
- Loading branch information
0 parents
commit 010871e
Showing
61 changed files
with
19,821 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
FROM squidfunk/mkdocs-material:latest | ||
|
||
LABEL project=metal_operator | ||
|
||
WORKDIR /docs | ||
|
||
COPY docs/requirements.txt requirements.txt | ||
RUN pip install --no-cache-dir -r requirements.txt | ||
|
||
EXPOSE 9000 | ||
|
||
# Start development server by default | ||
ENTRYPOINT ["mkdocs"] | ||
CMD ["serve", "--dev-addr=0.0.0.0:9000"] |
Oops, something went wrong.