Comment on [HELP] How to fork a docker image?
Voroxpete@sh.itjust.works 6 days ago
The answers about using Dockerfiles are absolutely correct, but if you’re looking for a quick and simple solution that will work locally, you can always just use the “commit” docker command. This basically saves the current state of a container as a new image. You can then run new containers from that image as needed.
sugar_in_your_tea@sh.itjust.works 6 days ago
This is totally fine for testing, but there are almost always better solutions.