diff --git a/Dockerfile b/Dockerfile index 23cbe5f..9978da3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,6 @@ COPY . . RUN go build -o ./bin/myapp ./ -EXPOSE 8000 +EXPOSE 8080 CMD ["./bin/myapp"] diff --git a/main.go b/main.go index 579b5ea..29b342d 100644 --- a/main.go +++ b/main.go @@ -33,7 +33,7 @@ func main() { models.DBAutoMigrate() log.Println("Starting http server up on 8000") - go http.ListenAndServe(":8000", nil) + go http.ListenAndServe(":8080", nil) go schedulers.InitSchedulers() go subscribers.InitEventSubscribers()