mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-25 11:16:31 -05:00
e8e72c5328
Signed-off-by: Philip Molares <philip.molares@udo.edu>
22 lines
676 B
Markdown
22 lines
676 B
Markdown
# 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 -->
|
|
```sh
|
|
docker buildx build -f backend/docker/Dockerfile -t hedgedoc-backend .
|
|
```
|
|
<!-- markdownlint-enable proper-names -->
|
|
|
|
or
|
|
|
|
<!-- markdownlint-disable proper-names -->
|
|
```sh
|
|
docker buildx build -f frontend/docker/Dockerfile -t hedgedoc-frontend .
|
|
```
|
|
<!-- markdownlint-enable proper-names -->
|
|
|
|
[buildkit]: https://docs.docker.com/build/install-buildx/
|