Something similar to: https://github.com/just-containers/s6-overlay#fixing-ownership--permissions
Usually when you start a docker container, you want to fix permissions on the volumes (so needs to happen at runtime and not build time). Without this feature, you would need to create a service which runs and won't be restarted, which is a bit ugly because services are long running processes and one shot services are not suitable for being supervised.
The idea is to provide a format similar to s6-overlay's.
This is suitable if you want to avoid spawning another process and thus makes faster startups.
Something similar to: https://github.com/just-containers/s6-overlay#fixing-ownership--permissions
Usually when you start a docker container, you want to fix permissions on the volumes (so needs to happen at runtime and not build time). Without this feature, you would need to create a service which runs and won't be restarted, which is a bit ugly because services are long running processes and one shot services are not suitable for being supervised.
The idea is to provide a format similar to s6-overlay's.
This is suitable if you want to avoid spawning another process and thus makes faster startups.