-
Notifications
You must be signed in to change notification settings - Fork 105
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
Tini warning when building 1.28.1 image #256
Comments
Most processes (like Deno) are written to have a working init handler. Containers are meant to be pretty minimal so they only ship with the relevant processes. Container environments can add a pretty minimal init handler on run with #165 added an init handler to the deno container image. So running with --init results in having two init handlers running which is what tini complains about. The old version you mentioned (1.10.3) was probably before tini was added to this image so there wasnt a conflict of two init handlers then. |
Thanks for looking into it! Running the image without |
Also got this issue when upgrading from 1.25 to 1.30. I run Deno in Docker via Dokku and don't handle the containers myself; so quite weird to get the Tini message in my face like this. Added |
When building the denoland/deno image with
docker build -t app . && docker run -it --init -p 1993:1993 app
I get a warning on the terminal:This is the dockerfile being used:
This does not happen if I use the version used on the Docker hub page which is 1.10.3
The text was updated successfully, but these errors were encountered: