Skip to content

Commit

Permalink
fix(docker): fix default port is worry
Browse files Browse the repository at this point in the history
  • Loading branch information
CorrectRoadH committed Dec 11, 2023
1 parent 3402a95 commit 01e9a5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/adapter/in/restful/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func NewRESTfulServer(
func (v *RESTfulServer) Start() error {
port := os.Getenv("PORT")
if port == "" {
port = "8080"
port = "7789"
}
v.e.Start(fmt.Sprintf(":%s", port))
return nil
Expand Down

0 comments on commit 01e9a5e

Please sign in to comment.