Skip to content
Snippets Groups Projects
Commit fceedd7e authored by Pierre Smeyers's avatar Pierre Smeyers
Browse files

fix: change default port to avoid conflict

parent d8415b51
No related branches found
No related tags found
No related merge requests found
...@@ -17,7 +17,7 @@ COPY bin/tracking_service /tracking_service ...@@ -17,7 +17,7 @@ COPY bin/tracking_service /tracking_service
COPY --from=busybox /bin/wget /wget COPY --from=busybox /bin/wget /wget
EXPOSE 80 EXPOSE 8039
HEALTHCHECK CMD ["/wget", "-Y", "off", "-O", "-", "http://localhost/health" ] HEALTHCHECK CMD ["/wget", "-Y", "off", "-O", "-", "http://localhost/health" ]
......
...@@ -28,7 +28,7 @@ import ( ...@@ -28,7 +28,7 @@ import (
. "tbc.orange.com/gitlab-templates-tracking/cmd/tracking_service/internal" . "tbc.orange.com/gitlab-templates-tracking/cmd/tracking_service/internal"
) )
const PORT = 80 const PORT = 8039
type Configuration struct { type Configuration struct {
Clients []ClientTracking `json:"clients"` Clients []ClientTracking `json:"clients"`
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment