We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d820ed0 commit db36ec6Copy full SHA for db36ec6
‎Dockerfile.tpl
@@ -9,4 +9,4 @@ WORKDIR /app
9
COPY --from=build-env /go/src/github.com/[[.Repo.Owner]]/[[.Repo.Name]]/app /app/
10
CMD ["./app"]
11
USER 1000
12
-EXPOSE 80/tcp
+EXPOSE 8080/tcp
‎cmd/_app_name_/main.go.tpl
@@ -13,5 +13,5 @@ func main() {
13
router.GET("/albums/:id", album.GetAlbumByID)
14
router.POST("/albums", album.PostAlbums)
15
16
- router.Run("localhost:80")
+ router.Run("localhost:8080")
17
}
0 commit comments