You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some issue when init service requiring a terminal, as there were no command nor entry point in the Dockerfile (see #1 ). This is solve so far adding a entrypoint in the service you want to use:
entrypoint: "/bin/bash -i"`
Probably no need of this if include as last line of the Dockrefile:
USER root
ENTRYPOINT ["/sbin/my_init","--quiet","--","/sbin/setuser","eudaquser","/bin/bash","-l","-c"]
CMD ["/bin/bash","-i"]
(not sure about the root, probably yes...)
The text was updated successfully, but these errors were encountered:
Some issue when init service requiring a terminal, as there were no command nor entry point in the Dockerfile (see #1 ). This is solve so far adding a entrypoint in the service you want to use:
Probably no need of this if include as last line of the Dockrefile:
(not sure about the root, probably yes...)
The text was updated successfully, but these errors were encountered: