This is an automated email from the ASF dual-hosted git repository. mgrigorov pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/wicket.git
commit 46c38532b77942cfa783f1fd47b82fde2645cf85 Author: Martin Tzvetanov Grigorov <[email protected]> AuthorDate: Sat Jun 21 14:02:10 2025 +0300 Add a mini howto for the Docker image used for the examples Signed-off-by: Martin Tzvetanov Grigorov <[email protected]> --- wicket-examples/docker-howto.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/wicket-examples/docker-howto.md b/wicket-examples/docker-howto.md new file mode 100644 index 0000000000..72b1071f6f --- /dev/null +++ b/wicket-examples/docker-howto.md @@ -0,0 +1,24 @@ +# How to update the Docker image used for the demo + +## Build + +``` +docker build --tag apache.jfrog.io/wicket-docker/wicket-examples:LATEST-10 . +``` + +## Push + +1. Login + +``` +docker login apache.jfrog.io +``` +Enter your ASF id and password when prompted. + +2. Push + +``` +docker push apache.jfrog.io/wicket-docker/wicket-examples:LATEST-10 +``` + +3. Optional: You could verify at https://apache.jfrog.io/ui/packages/docker:%2F%2Fwicket-examples/LATEST-10?projectKey=wicket \ No newline at end of file
