diff options
author | Till <2353100+S7evinK@users.noreply.github.com> | 2024-12-18 11:23:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-18 11:23:41 +0100 |
commit | c56b2bfe33b12702652a13209b3483d3d1a8feac (patch) | |
tree | 87df67054690f595bb0944870bdef8982661d1b3 /build/docker/README.md | |
parent | a8d842bd058f74eb296f28e76583488f6c177e9f (diff) |
Speedup building docker images in CI (#3467)
This should significantly speedup building the pinecone and yggdrasil
demos, as they now reuse the new `dendrite:buildcache`, which already
builds all binaries.
Diffstat (limited to 'build/docker/README.md')
-rw-r--r-- | build/docker/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/docker/README.md b/build/docker/README.md index 8d69b9af..cc8b8215 100644 --- a/build/docker/README.md +++ b/build/docker/README.md @@ -12,7 +12,7 @@ The `Dockerfile` is a multistage file which can build Dendrite. From the root of repository, run: ``` -docker build . -t matrixdotorg/dendrite-monolith +docker build -t ghcr.io/element-hq/dendrite-monolith:latest . ``` ## Compose file @@ -36,7 +36,7 @@ To generate keys: ``` docker run --rm --entrypoint="" \ -v $(pwd):/mnt \ - matrixdotorg/dendrite-monolith:latest \ + ghcr.io/element-hq/dendrite-monolith:latest \ /usr/bin/generate-keys \ -private-key /mnt/matrix_key.pem \ -tls-cert /mnt/server.crt \ |