You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: add macOS Apple Silicon Podman setup instructions
Add a dedicated section for configuring Podman on Apple Silicon Macs
with Rosetta emulation. This is required because the aro-installer
image is only built for amd64, and developers need to set up Rosetta
and the correct Podman socket path for local RP development.
Relates: ARO-25612
Copy file name to clipboardExpand all lines: docs/prepare-your-dev-environment.md
+53Lines changed: 53 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -184,6 +184,59 @@ The containerized development environment requires only these locally installed
184
184
sudo touch /etc/containers/nodocker
185
185
```
186
186
187
+
#### Configure Podman on macOS (Apple Silicon)
188
+
189
+
> [!IMPORTANT]
190
+
> On Apple Silicon Macs (M1/M2/M3/M4), the `aro-installer` container image is only built for `amd64`. You must configure Podman with Rosetta emulation to run amd64 containers.
191
+
192
+
1. Install Podman
193
+
194
+
```sh
195
+
brew install podman
196
+
```
197
+
198
+
2. Initialize the Podman machine with Rosetta support and sufficient resources
0 commit comments