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
ClosesUnstructured-IO#409
Use PORT in app-start.sh to allow us to change the server port.
To verify, make sure that these commands both run the server at the
expected port:
```
make docker-build
docker run -p 9200:9200 -e PORT=9200 -it --rm pipeline-family-general-dev:latest
curl localhost:9200/healthcheck
{"healthcheck":"HEALTHCHECK STATUS: EVERYTHING OK!"}
docker run -p 8000:8000 -it --rm pipeline-family-general-dev:latest
curl localhost:8000/healthcheck
{"healthcheck":"HEALTHCHECK STATUS: EVERYTHING OK!"}
```
0 commit comments