corca-ai / EVAL

EVAL(Elastic Versatile Agent with Langchain) will execute all your requests. Just like an eval method!
MIT License
869 stars 82 forks source link

How do I remove or shut down an app created by EVAL? #17

Closed cvarrichio closed 1 year ago

cvarrichio commented 1 year ago

I tried a standard "To Do" prompt and it successfully created that app. However, I can't figure out a way to shut down that app. If I kill the docker environment and restart it, it appears to restart the to do app as well.

hanchchch commented 1 year ago

fyi, if you restart the docker envs (maybe with docker-compose down) the processes it created should be also killed. But the ports may still seems to be allocated since it's binded by ports option in docker-compose.yml, despite there's no process running on it.

cvarrichio commented 1 year ago

Thank you, that was exactly what was going on. I thought that since the ports were still in use, the process was still running, but this was dictated by docker-compose.yml.