I am using the official GitLab Docker image.
I want to have pre-configured user accounts available in my GitLab container to be used for tests.
But user accounts are saved in a volume, so I can't just commit
and push
the GitLab image after having created my test users.
So: how should I persist them?
One way would be to create them on startup using the API after each new deployment, but this is quite slow/cumbersome.