Differences From Artifact [3af911282e]:
- Executable file Makefile.in — part of check-in [a9e862b887] at 2022-11-30 12:19:33 on branch trunk — The "container-run" target now runs "container-image" conditionally, building it only if it wasn't created in a prior step. This allows custom image builds followed by a one-command way of running that built image. Without this, the custom image gets stomped on. (user: wyoung size: 4880)
To Artifact [7b22e21a48]:
- Executable file Makefile.in — part of check-in [4429e10f6d] at 2022-11-30 12:23:06 on branch trunk — Put a "sleep 1" into "make container-run" before the step that shows the container logs to ensure we show everything it says on startup. Added this on seeing just the first line of output due to a race condition, so I missed the generated admin password. (user: wyoung size: 4940)
| ︙ | |||
141 142 143 144 145 146 147 148 | 141 142 143 144 145 146 147 148 149 | + | --cap-drop MKNOD \ --cap-drop NET_BIND_SERVICE \ --cap-drop NET_RAW \ --cap-drop SETFCAP \ --cap-drop SETPCAP \ --detach --publish 8080:8080 \ $(DRFLAGS) fossil:@FOSSIL_CI_PFX@ @sleep 1 # decrease likelihood of logging race condition docker container logs fossil-@FOSSIL_CI_PFX@ |