version: "3"
services:
node:
build: .
image: alpine
ports:
- "58001-58100:9999"
scale: 20
当 ports 是区间时,每个 node 到 start 就很慢。 当 ports: "9999"只指定 node 端口时,快是快了,但是偶尔会有 node 的 port not bound 。 当 ports: "58888:9999"时不能--scale 。。。(废话)
求问大佬,是我使用姿势不对吗?
