I'm trying to create a custom Docker image for Ghost (https://ghost.org/) with some themes pre-installed. I pulled the official image (https://hub.docker.com/_/ghost/) and installed the Uno Zen (https://github.com/Kikobeats/uno-zen) theme as per the instructions - clone into content/themes
, run the setup script etc.
I then ran docker commit
to push these changes as another layer on the existing Docker image. However, the next time I spin up a container using this image, I do not see the theme files where they should be. It's like none of the changes persisted.
What am I doing wrong?