forked from codeforpdx/recordexpungPDX
-
Notifications
You must be signed in to change notification settings - Fork 0
Using Docker on M1 Mac
monocle edited this page Jan 13, 2023
·
1 revision
When building a Docker image, make sure to specify the platform. This can be done by either:
-
setting an environment variable
$ export DOCKER_DEFAULT_PLATFORM=linux/amd64/v8
which can be added to the~/.zshrc
file. -
adding to the docker-compose.yml
platform: linux/amd64/v8
-
building with --platform