File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -168,6 +168,8 @@ It is also possible to pass a parameter file:
168
168
SNB Datagen images are available via [Docker Hub](https://hub.docker.com/orgs/ldbc/repositories).
169
169
The image tags follow the pattern ` ${DATAGEN_VERSION} -${PLATFORM_VERSION} ` , e.g ` ldbc/datagen-standalone:0.5.0-2.12_spark3.1` .
170
170
171
+ When building images ensure that you [use BuildKit](https://docs.docker.com/develop/develop-images/build_enhancements/# to-enable-buildkit-builds).
172
+
171
173
# ### Standalone Docker image
172
174
173
175
The standalone image bundles Spark with the JAR and Python helpers, so you can run a workload in a container similarly to a local run, as you can
@@ -184,7 +186,7 @@ docker run \
184
186
The standalone Docker image can be built with the provided Dockerfile. To build, execute the following command from the repository directory:
185
187
186
188
` ` ` bash
187
- docker buildx build . --target=standalone -t ldbc/datagen-standalone:latest
189
+ docker build . --target=standalone -t ldbc/datagen-standalone:latest
188
190
` ` `
189
191
190
192
# ### JAR-only image
@@ -198,7 +200,7 @@ COPY --from=ldbc/datagen-jar:latest /jar /lib/ldbc-datagen.jar
198
200
The JAR-only Docker image can be built with the provided Dockerfile. To build, execute the following command from the repository directory:
199
201
200
202
` ` ` bash
201
- docker buildx build . --target=jar -t ldbc/datagen-jar:latest
203
+ docker build . --target=jar -t ldbc/datagen-jar:latest
202
204
` ` `
203
205
# ## Elastic MapReduce
204
206
You can’t perform that action at this time.
0 commit comments