Docker persistence missing
There is no Docker persistence
The documentation says how to do it but actually it does not work
For what i saw on the dockerfile and dockerfile-alpine there is no "VOLUME" pointing to "/home/archerysec".
If you look at the example docker compose file it shows how you can setup archery with a postgres db in a separate container with persistence. I think you're right on the method shown in the docs though, it doesn't appear to work.
I expected the db to maintain persistence data but that seems not to be the case, I got persistence working by mounting the app folder from the container on the host.
docker cp archerysec:/home/archerysec/app . chown 999.999 app/* -R