Skip to content

Commit d784cec

Browse files
authored
Added mention of ARM 32 and 64 bit docker images
1 parent 7db1221 commit d784cec

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

pages/articles/docker.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -90,16 +90,16 @@ After that you can start running commands like `Connect-PnPOnline`.
9090
9191
Sometimes you want to run inline PnP.PowerShell commands.
9292
93-
- Linux/WSL/Mac OS:
93+
- Latest stable version:
9494
9595
```bash
96-
docker run --rm -it m365pnp/powershell
96+
docker run --rm -it m365pnp/powershell:latest
9797
```
9898
99-
- Windows (run in PowerShell console):
99+
- Latest nightly version:
100100
101101
```powershell
102-
docker run --rm -it m365pnp/powershell:1.10.0-nanoserver-1809
102+
docker run --rm -it m365pnp/powershell:nightly
103103
```
104104
105105
After that you can start running commands like `Connect-PnPOnline`.
@@ -115,7 +115,7 @@ Mind you that in the case above, the container will have an isolated disk system
115115
- Windows (run in PowerShell console):
116116
117117
```powershell
118-
docker run --rm -it -v "${pwd}:C:\workplace" -w C:\workplace m365pnp/powershell:1.10.0-nanoserver-1809
118+
docker run --rm -it -v "${pwd}:C:\workplace" -w C:\workplace m365pnp/powershell
119119
```
120120
121121
In such container you can run `Get-ChildItem` and see the contents of the current directory.
@@ -163,7 +163,7 @@ Please see [Docker documentation](https://docs.docker.com/engine/reference/run/)
163163
164164
### Nightly
165165
166-
* nightly: The latest night image
166+
* nightly: The latest nightly image
167167
168168
* alpine-3.20
169169
* `docker pull m365pnp/powershell:nightly`
@@ -178,10 +178,13 @@ Currently supported platforms:
178178
179179
* nanoserver-ltsc2022 (Windows 2022)
180180
* nanoserver-1809 (Windows 2019)
181-
* alpine-3.20 (Linux)
181+
* alpine-3.20 (Linux 64 bits)
182+
* ubuntu-focal-arm32 (ARM 32 bits, i.e. Raspberry Pi < 4)
183+
* azurelinux-3.0-arm64 (ARM 64 bits, i.e. Raspberry Pi >= 4)
182184
183185
Tag name examples:
184186
187+
* 2.99.114-nightly-azurelinux-3.0-arm64
185188
* 2.99.112-nightly-alpine-3.20
186189
* 2.12.0-lts-alpine-3.17
187190
* 2.12.0-nanoserver-ltsc2022

0 commit comments

Comments
 (0)