From c7ce00b9fda91915468dc3ed668f6247ea7ab8a4 Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Sun, 27 Aug 2023 23:04:56 +0400 Subject: [PATCH] Add info about pyspark recipe --- docs/using/specifics.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/using/specifics.md b/docs/using/specifics.md index 53dc0e409..3ad16a541 100644 --- a/docs/using/specifics.md +++ b/docs/using/specifics.md @@ -57,11 +57,15 @@ You can build a `pyspark-notebook` image with a different `Spark` version by ove For example, here is how to build a `pyspark-notebook` image with Spark `3.2.0`, Hadoop `3.2` and OpenJDK `11`. +```{warning} +This recipe is not tested and might be broken. +``` + ```bash # From the root of the project # Build the image with different arguments docker build --rm --force-rm \ - -t jupyter/pyspark-notebook:spark-3.2.0 ./pyspark-notebook \ + -t jupyter/pyspark-notebook:spark-3.2.0 ./images/pyspark-notebook \ --build-arg spark_version=3.2.0 \ --build-arg hadoop_version=3.2 \ --build-arg spark_checksum=707DDE035926A50B75E53FCA72CADA519F3239B14A96546911CB4916A58DCF69A1D2BFDD2C7DD5899324DBD82B6EEAB9797A7B4ABF86736FFCA4C26D0E0BF0EE \