mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-20 02:05:21 -04:00
docs: restructure documentation
This rewrite follows the principles of https://diataxis.fr/ Co-authored-by: Erik Michelson <github@erik.michelson.eu> Signed-off-by: Philip Molares <philip.molares@udo.edu> Signed-off-by: Erik Michelson <github@erik.michelson.eu>
This commit is contained in:
parent
e0dd24ed29
commit
e07cd62596
68 changed files with 1163 additions and 315 deletions
22
docs/content/how-to/develop/docker.md
Normal file
22
docs/content/how-to/develop/docker.md
Normal file
|
@ -0,0 +1,22 @@
|
|||
# Building Docker images
|
||||
|
||||
To build Docker images of the backend or frontend use the following commands.
|
||||
Make sure that you have installed the [Docker BuildKit Plugin][buildkit] and
|
||||
execute the commands from the root level of the project.
|
||||
Otherwise, the build process may fail.
|
||||
|
||||
<!-- markdownlint-disable proper-names -->
|
||||
```shell
|
||||
docker buildx build -f backend/docker/Dockerfile -t hedgedoc-backend .
|
||||
```
|
||||
<!-- markdownlint-enable proper-names -->
|
||||
|
||||
or
|
||||
|
||||
<!-- markdownlint-disable proper-names -->
|
||||
```shell
|
||||
docker buildx build -f frontend/docker/Dockerfile -t hedgedoc-frontend .
|
||||
```
|
||||
<!-- markdownlint-enable proper-names -->
|
||||
|
||||
[buildkit]: https://docs.docker.com/build/install-buildx/
|
Loading…
Add table
Add a link
Reference in a new issue