akzincsystems commented on issue #27481:
URL: https://github.com/apache/superset/issues/27481#issuecomment-1999148996

   Figured it out.
   Containers on different networks cannot see each other.  You can either:
   
   1. use the `docker network connect` command to join a container to a network
   2. create an external link in your docker compose file to point at the 
external network and add that to container configuration e.g.
   ```
   networks:
     external_net:
       name: <name_of_other_network>
       external: true
   
   services:
     myservice:
       networks:
         external_net:
   ```


-- 
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: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org

Reply via email to