Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
export DOCKER_BUILDKIT=0
export COMPOSE_DOCKER_CLI_BUILD=0


Testing seems to suggest that setting DOCKER_BUILDKIT=0 is only required.

Add this export line to your ~/.zshrc file.


Building for ARM64

Specify platform of input image in Dockerfile

Code Block
FROM --platform=linux/arm64 alpine:3.10
...

...