Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Commit bcd46b3

Browse files
author
Jean-Christophe Sirot
committed
Update README.md to add some documentation about the multi-arch applications
Signed-off-by: Jean-Christophe Sirot <[email protected]>
1 parent a804fb0 commit bcd46b3

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,22 @@ manipulating a package also accept a `--pull` flag to force pulling the bundle
337337
from the registry, even if it is present in the local store. This can be useful
338338
when you are repeatedly pushing a bundle on the same tag.
339339

340+
### Multi-arch applications
341+
342+
By default the `docker app push` command only pushes service images for the linux/amd64
343+
platform to the Docker Hub. By using the the `--all-platforms` flag it is possible to push
344+
the services images for all platforms:
345+
346+
```console
347+
$ docker app push --all-platforms myhubuser/myimage
348+
```
349+
350+
It is also possible to push only a limited subset of platforms with the `--platform` flag:
351+
352+
```console
353+
$ docker app push --platform linux/amd64 --platform linux/arm64 --platform linux/arm/v7 myhubuser/myimage
354+
```
355+
340356
## Next steps
341357

342358
If you're interested in contributing to the project, jump to

0 commit comments

Comments
 (0)