commit b78ec4608518c00e3ae9d8e528d83aecab825728
parent 07dfee685b66617cf4235bd03cce13cb1a723f6d
Author: MS <ms@taler.net>
Date: Thu, 10 Nov 2022 18:16:34 +0100
readme
Diffstat:
1 file changed, 20 insertions(+), 1 deletion(-)
diff --git a/docker/demo/README b/docker/demo/README
@@ -43,7 +43,26 @@ From this directory, run:
Hotfixes
--------
-TBD
+Attach to the base image first:
+
+ # $HOTFIX is arbitrary; helps avoid copying and pasting alphanumeric IDs
+ $ docker run --name $HOTFIX -it taler_local/taler_base /bin/bash
+
+From inside the container, navigate to "/$REPO", issue
+"git pull" and install the software as usual. Exit the
+container thereafter.
+
+Commit the container having the hotfix:
+
+ $ docker commit $HOTFIX
+
+That outputs a new ID ($RETVAL). That is the ID of the
+modified image. Tag it, to let other images use it to build:
+
+ $ docker tag $RETVAL taler_local/taler_base:latest
+
+Now build all the images with docker-compose, as described
+in the 'How to run' section.
How to run
==========