Commit fceedd7e authored by Pierre Smeyers's avatar Pierre Smeyers
Browse files

fix: change default port to avoid conflict

parent d8415b51
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ COPY bin/tracking_service /tracking_service
COPY --from=busybox /bin/wget   /wget


EXPOSE  80
EXPOSE  8039

HEALTHCHECK     CMD     ["/wget", "-Y", "off", "-O", "-", "http://localhost/health" ]

+1 −1
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@ import (
	. "tbc.orange.com/gitlab-templates-tracking/cmd/tracking_service/internal"
)

const PORT = 80
const PORT = 8039

type Configuration struct {
	Clients []ClientTracking `json:"clients"`