From a1464844d6f171207eef130b3c92578dd833d83a Mon Sep 17 00:00:00 2001 From: njfio <7220+njfio@users.noreply.github.com> Date: Thu, 22 Aug 2024 16:46:34 -0400 Subject: [PATCH] patch to dockerfile startup-combined --- fluent-env/Dockerfile | 1 + fluent-env/start-combined.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/fluent-env/Dockerfile b/fluent-env/Dockerfile index 3362e48..9679668 100644 --- a/fluent-env/Dockerfile +++ b/fluent-env/Dockerfile @@ -54,6 +54,7 @@ RUN cp ~/.cargo/git/checkouts/fluent_cli-*/*/example_configurations/*.json /.flu EXPOSE 5000 EXPOSE 7474 EXPOSE 7687 +EXPOSE 8000 RUN echo "dbms.default_database=neo4j" >> /etc/neo4j/neo4j.conf RUN echo "dbms.connector.bolt.enabled=true" >> /etc/neo4j/neo4j.conf diff --git a/fluent-env/start-combined.sh b/fluent-env/start-combined.sh index 97a4d8e..e266bb4 100644 --- a/fluent-env/start-combined.sh +++ b/fluent-env/start-combined.sh @@ -3,7 +3,7 @@ # Start Neo4j in the background neo4j start & -gunicorn -w 2 app:app & +gunicorn -w 2 app:app 0.0.0.0:5000 & echo "started neo4j and web server"