Skip to content

Commit

Permalink
update App listening on all Docker interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
unizhu committed Aug 12, 2024
1 parent 07cf01e commit 8bf657b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,11 @@ Access the application in your web browser by navigating to:
1. Pull & Run the Docker Image:

```bash
docker pull unizhu/salesforce-erd-generator
docker run -p 8082:8082 unizhu/salesforce-erd-generator
docker run -p 8082:8082 --name sf-erd-generator-container unizhu/salesforce-erd-generator
```

2. Access the application in your web browser by navigating to:
Expand Down
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,4 +112,4 @@ def index():
return send_from_directory(app.static_folder, 'index.html')

if __name__ == '__main__':
app.run(debug=True, port=8082)
app.run(debug=True, host='0.0.0.0', port=8082)

0 comments on commit 8bf657b

Please sign in to comment.