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

Added Port and host information for visualization and interface in environment using docker-compose file #82

Merged
merged 5 commits into from
Apr 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ jobs:
VALIDATE_PYTHON_PYLINT: true
VALIDATE_JAVASCRIPT_ES: true
DEFAULT_BRANCH: master
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6 changes: 6 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ services:
volumes:
- './visualization:/code'
- '/code/node_modules'
environment:
- HOST=0.0.0.0
- PORT=8075

ports:
- 8008:8075
depends_on:
Expand All @@ -73,6 +77,8 @@ services:
- 3001:3000
environment:
- CHOKIDAR_USEPOLLING=true
- REACT_APP_HOST=0.0.0.0
- REACT_APP_PORT=3000
depends_on:
- yaba_client
- yaba_visualization
Expand Down
Loading