Message ID | 20250401130840.72119-2-roger.pau@citrix.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | x86/EFI: prevent write-execute sections | expand |
On 01/04/2025 2:08 pm, Roger Pau Monne wrote: > Document in the README how to rebuild all containers. This is helpful when > populating a local docker registry for testing purposes. > > Signed-off-by: Roger Pau Monné <roger.pau@citrix.com> Acked-by: Andrew Cooper <andrew.cooper3@citrix.com> I'm working on extending Anthony's container-rebuild pipeline to do this too, but that's not quite ready yet. ~Andrew
On Tue, 1 Apr 2025, Roger Pau Monne wrote: > Document in the README how to rebuild all containers. This is helpful when > populating a local docker registry for testing purposes. > > Signed-off-by: Roger Pau Monné <roger.pau@citrix.com> Reviewed-by: Stefano Stabellini <sstabellini@kernel.org> > --- > automation/build/README.md | 7 +++++++ > 1 file changed, 7 insertions(+) > > diff --git a/automation/build/README.md b/automation/build/README.md > index ecc898680c91..6c647b1b2a68 100644 > --- a/automation/build/README.md > +++ b/automation/build/README.md > @@ -108,6 +108,13 @@ env CONTAINER_NO_PULL=1 \ > make -C automation/build opensuse/tumbleweed-x86_64 PUSH=1 > ``` > > +To rebuild all containers the `all` make target can be used, with or without > +the `PUSH` environment variable: > + > +``` > +make -C automation/build all PUSH=1 > +``` > + > [BuildKit]: https://docs.docker.com/build/buildkit/ > [registry]: https://gitlab.com/xen-project/xen/container_registry > [registry help]: https://docs.gitlab.com/ee/user/packages/container_registry/ > -- > 2.48.1 >
diff --git a/automation/build/README.md b/automation/build/README.md index ecc898680c91..6c647b1b2a68 100644 --- a/automation/build/README.md +++ b/automation/build/README.md @@ -108,6 +108,13 @@ env CONTAINER_NO_PULL=1 \ make -C automation/build opensuse/tumbleweed-x86_64 PUSH=1 ``` +To rebuild all containers the `all` make target can be used, with or without +the `PUSH` environment variable: + +``` +make -C automation/build all PUSH=1 +``` + [BuildKit]: https://docs.docker.com/build/buildkit/ [registry]: https://gitlab.com/xen-project/xen/container_registry [registry help]: https://docs.gitlab.com/ee/user/packages/container_registry/
Document in the README how to rebuild all containers. This is helpful when populating a local docker registry for testing purposes. Signed-off-by: Roger Pau Monné <roger.pau@citrix.com> --- automation/build/README.md | 7 +++++++ 1 file changed, 7 insertions(+)