diff --git a/README.md b/README.md index 3e7fc91..c5a8b23 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/app.py b/app.py index 7b7c691..7a42955 100644 --- a/app.py +++ b/app.py @@ -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)