bash script to export ports for docker images if you see missing ports config: ``` #!/usr/bin/env bash
# spring version export DR_SPRING_VERSION=1.3.5 # dubbo provider export DUBBO_WEB_H_PORT=8090 export DUBBO_WEB_C_PORT=8090 export DUBBO_MM_H_PORT=8091 export DUBBO_MM_C_PORT=8091 export DUBBO_APP_H_PORT=12345 export DUBBO_APP_C_PORT=12345 export DUBBO_QOS_H_PORT=22222 export DUBBO_QOS_C_PORT=22222 # grpc provider export GRPC_APP_H_PORT=12346 export GRPC_APP_C_PORT=12346 # gateway export GATEWAY_WEB_H_PORT=8080 export GATEWAY_WEB_C_PORT=8080 export GATEWAY_MM_H_PORT=8081 export GATEWAY_MM_C_PORT=8081 ``` [ Full content available at: https://github.com/apache/incubator-dubbo-spring-boot-project/issues/255 ] This message was relayed via gitbox.apache.org for [email protected]
