Skip to content

Commit

Permalink
change port to 8080
Browse files Browse the repository at this point in the history
Signed-off-by: Sébastien Allamand <[email protected]>
  • Loading branch information
allamand committed Nov 29, 2024
1 parent 6d1d832 commit 1d3706a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ We will create the folloginw policy

```
# You need to have ACCOUNT_ID in your environment
ECR_REPO=seb-demo
ECR_REPO=eks-example-go
cat << EOF> github-policy.json
{
"Version": "2012-10-17",
Expand Down
2 changes: 1 addition & 1 deletion src/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ type ServerValues struct {
}

func main() {
var addr = ":80"
var addr = ":8080"
if p := os.Getenv("PORT"); p != "" {
addr = ":" + p
}
Expand Down

0 comments on commit 1d3706a

Please sign in to comment.