After update to 1.6.0 container no longer starts #874
Unanswered
FRvanderVeen
asked this question in
Q&A
Replies: 1 comment
|
Thanks for the clean stack trace, that made this easy to pin down. It's a 1.6.0 regression: startup now tries to chmod the store directory as a hardening step, and on mounts where chmod isn't allowed (NFS/CIFS volumes, non-root setups) it crashes instead of continuing. 1.5.2 didn't do this, which is why the update broke it. Two options right now: make the container's user the owner of the /store mount (then the chmod succeeds), or hold on 1.5.2 briefly. The real fix, chmod failure becomes a warning instead of a crash, lands in v1.7.0-rc.4 and will be backported to the 1.6.1 line. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I'm attempting to update my drydock container to 1.6.0 from 1.5.2. But the container won't start. In the console (via portainer) I see:
Not sure whether it's a bug or some configuration issue.
When I attach the console to the running (1.5.2) container I can do
chmodwithout issues.All reactions