diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index 0e6ae47..8ca15f3 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -2,7 +2,7 @@ version: "3.9" services: chorus: - image: anthonyrawlins/chorus:discovery-debug + image: anthonyrawlins/chorus:v0.5.4-p2p-fix # REQUIRED: License configuration (CHORUS will not start without this) environment: diff --git a/p2p/node.go b/p2p/node.go index b145f2b..b3b2b85 100644 --- a/p2p/node.go +++ b/p2p/node.go @@ -65,7 +65,7 @@ func NewNode(ctx context.Context, opts ...Option) (*Node, error) { libp2p.DefaultMuxers, libp2p.EnableRelay(), libp2p.ConnectionManager(connManager), // Add connection management - libp2p.EnableAutoRelay(), // Enable AutoRelay for container environments + libp2p.EnableAutoRelayWithStaticRelays([]peer.AddrInfo{}), // Enable AutoRelay with empty static list ) if err != nil { cancel()