diff --git a/content/en/docs/Architecture/container.md b/content/en/docs/Architecture/container.md index c52d0c23..f63b3d04 100644 --- a/content/en/docs/Architecture/container.md +++ b/content/en/docs/Architecture/container.md @@ -99,7 +99,7 @@ $ docker run -ti --name custom-container {{< oci variant="core" >}} $ docker commit custom-container custom-image > sha256:37176f104a870480f9c3c318ab51f6c456571b6612b6a47b96af71b95a0a27c7 # Builds an ISO from it -$ docker run -v $PWD:/cOS -v /var/run/docker.sock:/var/run/docker.sock -i --rm quay.io/kairos/osbuilder-tools:v0.1.1 --name "custom-iso" --debug build-iso --date=false --local custom-image --output /cOS/ +$ docker run -v $PWD:/cOS -v /var/run/docker.sock:/var/run/docker.sock -i --rm quay.io/kairos/osbuilder-tools:v0.1.1 --name "custom-iso" --debug build-iso --date=false custom-image --output /cOS/ > ... > ... > xorriso : UPDATE : Writing: 147456s 84.0% fifo 100% buf 50% 60.5xD diff --git a/content/en/docs/Installation/automated.md b/content/en/docs/Installation/automated.md index 35fd68bf..d6e7859b 100644 --- a/content/en/docs/Installation/automated.md +++ b/content/en/docs/Installation/automated.md @@ -137,7 +137,7 @@ $ docker pull $IMAGE # docker run --entrypoint /bin/bash --name changes -ti $IMAGE # docker commit changes $IMAGE # Build an ISO with $IMAGE -$ docker run -v $PWD:/cOS -v /var/run/docker.sock:/var/run/docker.sock -i --rm quay.io/kairos/osbuilder-tools:latest --name "custom-iso" --debug build-iso --date=false --local --overlay-iso /cOS/files-iso $IMAGE --output /cOS/ +$ docker run -v $PWD:/cOS -v /var/run/docker.sock:/var/run/docker.sock -i --rm quay.io/kairos/osbuilder-tools:latest --name "custom-iso" --debug build-iso --date=false --overlay-iso /cOS/files-iso $IMAGE --output /cOS/ ``` {{% /tab %}} {{< /tabpane >}} diff --git a/content/en/docs/Installation/raspberry.md b/content/en/docs/Installation/raspberry.md index e6944de3..5850748c 100644 --- a/content/en/docs/Installation/raspberry.md +++ b/content/en/docs/Installation/raspberry.md @@ -79,13 +79,11 @@ docker run -v $PWD:/HERE \ -v /var/run/docker.sock:/var/run/docker.sock \ --privileged -i --rm \ --entrypoint=/build-arm-image.sh {{< registryURL >}}/osbuilder-tools:{{< osbuilderVersion >}} \ - --use-lvm \ --model rpi4 \ --state-partition-size 6200 \ --recovery-partition-size 4200 \ --size 15200 \ --images-size 2000 \ - --local \ --config /HERE/cloud-config.yaml \ --docker-image $IMAGE /HERE/build/out.img ```