-
Notifications
You must be signed in to change notification settings - Fork 108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
arm32v7/debian:bullseye-slim: Clock not working #106
Comments
This is the same root cause as #97; bullseye is now using the 64bit time syscalls on 32bit userspace, so you need to make sure your Docker is sufficiently new and you'll need a newer libseccomp than is probably available in the stable distro you're running on the host. |
Hi tianon, Hi all, i just checked on the system where date command is not working the version of docker and libseccomp2. Both components seem to be the latest ones ?
BUT in Environment B (Raspberry Pi 3) it works without problems although it is an older version of docker and libseccomp2 installed
|
Just checked with the old system were everything was working fine. After updating the package |
Specifically:
😞 |
Solved for raspbian buster with libseccomp2 2.5.0-3 with apt pinning and debian testing/unsable packages
|
Closing, as this isn't something we can fix directly here (it requires host updates to libseccomp and Docker). |
In case anyone is still struggling with this issue i was able to solve by upgrading from buster to bullseye. Had to install |
When trying to get the current time from the running arm32v7/debian:bullseye-slim image I always get back 1970 (seconds since epoch 0)
e.g.
pi@raspberrypi:~ $ docker run -it --rm arm32v7/debian:bullseye-slim date Thu Jan 1 00:00:00 UTC 1970
Furthemore: Time doesn't change if checking seconds since epochtime
date +%s
the result is always 0
When i run the container in privileged mode fetching time works well.
I also checked with arm32v7/debian:buster-slim there it worked flawless.
The text was updated successfully, but these errors were encountered: