Skip to content

Commit

Permalink
port 5000 is not usable on Mac OS Monterey, move registry to 5050
Browse files Browse the repository at this point in the history
Signed-off-by: Petr Fedchenkov <[email protected]>
  • Loading branch information
giggsoff committed Nov 30, 2021
1 parent 3b4db78 commit d4e3729
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmd/registry.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ var startRegistryCmd = &cobra.Command{
if err := eden.StartRegistry(registryPort, registryTag, registryDist); err != nil {
log.Errorf("cannot start registry: %s", err)
} else {
log.Infof("registry is running and accessible on port %d", adamPort)
log.Infof("registry is running and accessible on port %d", registryPort)
}
},
}
Expand Down
2 changes: 1 addition & 1 deletion docs/applications.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ You can modify behavior with `--volume-type` flag:

### Docker Image from Local Registry

eden starts a local registry image, running on the localhost at port `5000`
eden starts a local registry image, running on the localhost at port `5050`
(configurable). You can start a docker image from that registry by
passing it the `--registry=local` option. The default for `--registry`
is the hostname given by the registry. For example,
Expand Down
2 changes: 1 addition & 1 deletion pkg/defaults/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const (
DefaultRedisHost = "localhost"
DefaultRedisPort = 6379
DefaultAdamPort = 3333
DefaultRegistryPort = 5000
DefaultRegistryPort = 5050

//tags, versions, repos
DefaultEVETag = "0.0.0-master-6b6fa8fe" //DefaultEVETag tag for EVE image
Expand Down

0 comments on commit d4e3729

Please sign in to comment.