-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
2022.08 S6 overlay bug #1176
Comments
Can we get a complete dump of your logs please? I've not really got a lot to go on here. Given the following compose file, on my PC (docker, not rootless)
I am running the container with no issue here:
|
Also a little more detail about how you are starting your container. What your (equivalent of?) docker-compose script / run command looks like |
Had same issue. Fixed by removing "--init" from the docker run command. |
I ran into the same |
AH. I had seen something like this in HomeAssistant's changelogs, but I didn't want to say anything in case I was barking up the wrong tree
Thanks for this info. I've never used such systems,, so interesting to know. I wonder if there is a way around this that does not require downgrading S3 back to V2... |
I'm running pihole om a Unify UDMpro, I start the container with the following command:
the output is the following:
|
So, it seems that more people have problems since the update. My fix was the following:
Applying these changes makes 2022.8 run on my machine |
OK, all this talk of Before I updated the version of I've just tested reverting this change (here: 18360d1), and pushed a new image with the Can you folk that are running into issues with (From a very brief test on my UDM running podman, it at least starts the container) |
Related: just-containers/s6-overlay#158 |
Seems to work using the |
Environment
PiHole
Tag
|
Great news, it does fix the issue on However it does require an additional command, # 1. Disable default --init injection
dokku scheduler-docker-local:set pihole init-process false
# 2. Deploy the exp tag
dokku git:from-image pihole pihole/pihole:exp |
This should be fixed in latest once it has built (tag 2022.08.2) |
Good news, the |
Closing this issue out as it the reported issues appear to be fixed in |
That was so quick. Thanks alot! |
I fixed this in my fly.io-based docker-pihole deployment, so I'll mention the fix here for future readers. It's not suitable (as-is) for inclusion in docker-pihole, I think. Use the FROM pihole/pihole:latest
ENTRYPOINT [ \
"unshare", "--pid", "--fork", "--kill-child=SIGTERM", "--mount-proc", \
"perl", "-e", "$SIG{INT}=''; $SIG{TERM}=''; exec @ARGV;", "--", \
"/s6-init" ] https://gist.github.com/darkrain42/02fa589002afa645912d8f8d87bf55f8 |
Details
Related Issues
How to reproduce the issue
Pihole runs rootless with podman.
It has a supervisor running and this is the process hierarchy from
systemctl
in 2022.07.1:Fix
Revert to 2022.07.1 for now, as it runs fine here.
The text was updated successfully, but these errors were encountered: