Skip to content

Commit

Permalink
Merge pull request symfony-cli#378 from tucksaun/fix/377
Browse files Browse the repository at this point in the history
Also consider 27018 and 27019 ports for MongoDB service discovery
  • Loading branch information
fabpot authored Nov 8, 2023
2 parents b30eae1 + ec1b7f0 commit c5383d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion envs/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ func (l *Local) dockerServiceToRelationship(client *docker.Client, container typ
"scheme": "http",
}
return rels
} else if p.PrivatePort == 27017 {
} else if p.PrivatePort == 27017 || p.PrivatePort == 27018 || p.PrivatePort == 27019 {
username := ""
password := ""
path := ""
Expand Down

0 comments on commit c5383d8

Please sign in to comment.