abhi1045 opened a new issue, #23825: URL: https://github.com/apache/superset/issues/23825
I'm trying to build a docker image of superset on a non default port. I follow the steps mentioned in at this [link](https://github.com/apache/superset/blob/master/superset/config.py#:~:text=SUPERSET_WEBSERVER_PORT%20%3D%208088) and also this [link](https://superset.apache.org/docs/installation/configuring-superset/). But the issue is I'm changing the default port to 6011 but it is not changing. #### How to reproduce the bug 1. Go to 'superset_config.py' Add below code snippet ``` SUPERSET_WEBSERVER_PROTOCOL = "http" SUPERSET_WEBSERVER_ADDRESS = "0.0.0.0" SUPERSET_WEBSERVER_PORT = 6011 ``` <img width="450" alt="Screenshot 2023-04-26 at 1 51 09 PM" src="https://user-images.githubusercontent.com/86192930/234514903-9efcf441-de85-449a-af37-1af9f6725377.png"> ### Expected results When I'm building the docker using following commands ``` docker build -t superset . docker run -p 8088:6011 superset ``` The port "6011" must have listening. ### Actual results <img width="1136" alt="Screenshot 2023-04-26 at 1 39 34 PM" src="https://user-images.githubusercontent.com/86192930/234512959-a5e2ee4e-e44d-4885-9ad4-9084a2a0212f.png"> It is still running on 8088 port, but should run on 6011 port. ### Environment - browser type and version: - superset version: 2.1.0 - python version: 3.9.13 - node.js version: 16.17.0 ### Checklist Make sure to follow these steps before submitting your issue - thank you! - [ x] I have checked the superset logs for python stacktraces and included it here as text if there are any. - [x ] I have reproduced the issue with at least the latest released version of superset. - [ x] I have checked the issue tracker for the same issue and I haven't found one similar. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
