This is an automated email from the ASF dual-hosted git repository. vavila pushed a commit to branch chore/docker-untrack-config-file in repository https://gitbox.apache.org/repos/asf/superset.git
commit f5a61e8a33185b8df32486951d38396ba1bab686 Author: Vitor Avila <[email protected]> AuthorDate: Tue Feb 3 00:56:44 2026 -0300 chore: Properly untrack WebSocket config file for docker --- UPDATING.md | 15 +++++++++++++++ docker/superset-websocket/config.json | 22 ---------------------- 2 files changed, 15 insertions(+), 22 deletions(-) diff --git a/UPDATING.md b/UPDATING.md index 89418e4102c..0f22ef36f03 100644 --- a/UPDATING.md +++ b/UPDATING.md @@ -24,6 +24,21 @@ assists people when migrating to a new version. ## Next +### WebSocket config for GAQ with Docker + +[35896](https://github.com/apache/superset/pull/35896) and [37624](https://github.com/apache/superset/pull/37624) updated documentation on how to run and configure Superset with Docker. Specifically for the WebSocket configuration, a new `docker/superset-websocket/config.example.json` was added to the repo, so that users could copy it to create a `docker/superset-websocket/config.json` file. The existing `docker/superset-websocket/config.json` was removed and git-ignored, so if you're us [...] +- Stash/backup your existing `config.json` file, to re-apply it after (will get git-ignored going forward) +- Update the `volumes` configuration for the `superset-websocket` service in your `docker-compose.override.yml` file, to include the `docker/superset-websocket/config.json` file. For example: +``` yaml +services: + superset-websocket: + volumes: + - ./superset-websocket:/home/superset-websocket + - /home/superset-websocket/node_modules + - /home/superset-websocket/dist + - ./docker/superset-websocket/config.json:/home/superset-websocket/config.json:ro +``` + ### Example Data Loading Improvements #### New Directory Structure diff --git a/docker/superset-websocket/config.json b/docker/superset-websocket/config.json deleted file mode 100644 index 8f6afdcc22a..00000000000 --- a/docker/superset-websocket/config.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "port": 8080, - "logLevel": "info", - "logToFile": false, - "logFilename": "app.log", - "statsd": { - "host": "127.0.0.1", - "port": 8125, - "globalTags": [] - }, - "redis": { - "port": 6379, - "host": "127.0.0.1", - "password": "", - "db": 0, - "ssl": false - }, - "redisStreamPrefix": "async-events-", - "jwtAlgorithms": ["HS256"], - "jwtSecret": "CHANGE-ME-IN-PRODUCTION-GOTTA-BE-LONG-AND-SECRET", - "jwtCookieName": "async-token" -}
