mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 17:56:30 -05:00
b5e64880cd
Signed-off-by: David Mehren <git@herrmehren.de>
19 lines
487 B
Markdown
19 lines
487 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](https://docs.docker.com/build/install-buildx/) and
|
|
execute the commands from the root level of the project.
|
|
Otherwise, the build process may fail.
|
|
|
|
```sh
|
|
docker buildx build -f backend/docker/Dockerfile -t hedgedoc-backend .
|
|
```
|
|
|
|
or
|
|
|
|
```sh
|
|
docker buildx build -f frontend/docker/Dockerfile -t hedgedoc-frontend .
|
|
```
|
|
|
|
|
|
|