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 Aug 29, 2018. It is now read-only.
Hello, I'm newbie in Geard and i blocked on a problem for ssh to the containers. My problem start quickly, I'm not able to start a container with the isolate flag. When i install or deploy the container it always came to a failed status before start working. I'd tried with several containers and with the README's example too, but it is the same.
What could be the problem?
The text was updated successfully, but these errors were encountered:
The isolate command will specify a shell script to run before your docker RUN command. What it does is replace the container's entrypoint. That also mean that if you specified ENTRYPOINT in your Dockerfile, it will be skipped. It has two consequences:
if your container relies on the fact that it runs ENTRYPOINT, it won't work
the ENTRYPOINT specified by geard might run the script specified by RUN fron a different state (isolated, that's the goal), and it might be incompatible with your container, if it relies on features that can't be isolated.
Thank you for the explanation, but I'm still having problems with it. I tried using CMD instead of ENTRYPOINT and like i expected it doesn't work, so, how can i execute the main process of the container?
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hello, I'm newbie in Geard and i blocked on a problem for ssh to the containers. My problem start quickly, I'm not able to start a container with the isolate flag. When i install or deploy the container it always came to a failed status before start working. I'd tried with several containers and with the README's example too, but it is the same.
What could be the problem?
The text was updated successfully, but these errors were encountered: