Remove default volume from Dockerfile

Currently, as of https://github.com/moby/moby/issues/3465
`VOLUME` points cannot be removed in inherited images.
Therefore, anybody aiming to modify the image or the
LE_CONFIG_HOME, will still have an unnamed volume created
even if it is not used. If users want real persistence,
then the volume should be configured and named at creation
time. Otherwise an new unnamed volume will be created each
time, not providing much of an advantage.
This commit is contained in:
Pablo Correa Gómez 2021-04-23 21:37:17 +02:00
parent 509d3f6d30
commit 3f852abc7f
No known key found for this signature in database
GPG Key ID: 7A342565FF635F79

View File

@ -69,7 +69,5 @@ else \n \
exec -- \"\$@\"\n \
fi" >/entry.sh && chmod +x /entry.sh
VOLUME /acme.sh
ENTRYPOINT ["/entry.sh"]
CMD ["--help"]