-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Description
Hello, I create addon for Home Assistant OS which are just Docker image with some integration around.
For it I need to have all persistent data stored only in /data, other volumes will not survive recreate.
But there is an issue with /etc/letsencrypt - it is volume, so I cannot create symlink for it in my image (using your image as base).
Describe the solution you'd like
I would like to remove /etc/letsencrypt from VOLUME in the Dockerfile.
nginx-proxy-manager/docker/Dockerfile
Line 54 in fa851b6
VOLUME [ "/data", "/etc/letsencrypt" ] |
Or have the directory configurable, but this seems more work.
Describe alternatives you've considered
There is option to not use this image as a base, but copy&paste its content to my Dockerfile, but this will be maintenance hell.
Thank you for help. I can do PR if you confirm the solution.