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
{{ message }}
This repository has been archived by the owner on May 31, 2019. It is now read-only.
My requirement is to define a bash script file as an ENTRYPOINT for docker container instead of dnx command. I have created one bash script file and starting kestrel engine from this file. Below is code of startup bash script file...
#!/bin/bash exec dnx . kestrel
I have verified that, when I am running startup bash file from inside container, the kestrel is started but when I am hit enter or any key the server stopped. The dnx . kestrel command runs and exit without waiting for terminate signal.
The text was updated successfully, but these errors were encountered:
My requirement is to define a bash script file as an ENTRYPOINT for docker container instead of dnx command. I have created one bash script file and starting kestrel engine from this file. Below is code of startup bash script file...
#!/bin/bash
exec dnx . kestrel
I have verified that, when I am running startup bash file from inside container, the kestrel is started but when I am hit enter or any key the server stopped. The dnx . kestrel command runs and exit without waiting for terminate signal.
The text was updated successfully, but these errors were encountered: