Skip to content
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

Cannot run Docker container locally #41

Open
josepedrocorreia opened this issue Feb 4, 2021 · 2 comments
Open

Cannot run Docker container locally #41

josepedrocorreia opened this issue Feb 4, 2021 · 2 comments

Comments

@josepedrocorreia
Copy link

Hi there,

I'm trying to run this project locally using Docker. I followed the steps described in the README but couldn't get it to work. The container starts, but when I try to access http://localhost:5050 I get connection refused. Attached are the container logs.

Thanks in advance!

robotreviewer-log.txt

@pabluk
Copy link

pabluk commented Apr 16, 2021

Just for the record, I've encountered the same issue and after digging a little bit I found out that it's related to upgrades on unpinned libraries.
As a workaround here's the diff that worked for me:

diff --git a/robotreviewer_env.yml b/robotreviewer_env.yml
index ded8102..8768963 100644
--- a/robotreviewer_env.yml
+++ b/robotreviewer_env.yml
@@ -4,6 +4,7 @@ channels:
 dependencies:
   - cython
   - flask=1.0.2
+  - werkzeug=0.16.0
   - gensim=3.4.0
   - jinja2=2.10
   - murmurhash=0.28.0
@@ -24,6 +25,8 @@ dependencies:
     - gevent
     - amqp==2.3.2
     - celery==4.2.1
+    - kombu==4.2.1
+    - vine==1.3.0
     - flask-wtf==0.14.2
     - fuzzywuzzy==0.17.0
     - keras==2.1.5

I'll probably open a pull request with that changes.

@sonuranjitjacob
Copy link

I have the same issue and making your changes did not solve my issue. Can you please tell me if you made any other changes?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants