fix: use port 9080 for internal registry (nginx proxy)
Port 5050 binds to 127.0.0.1 inside container, unreachable externally. Port 9080 (nginx) proxies /v2/ correctly and returns 401 as expected. Combined with network_mode=host runner, all traffic stays on LAN.
This commit is contained in:
parent
8d663f2392
commit
de67a15050
1 changed files with 1 additions and 1 deletions
|
|
@ -2,7 +2,7 @@ stages:
|
|||
- build
|
||||
|
||||
variables:
|
||||
INTERNAL_REGISTRY: "10.10.10.10:5050"
|
||||
INTERNAL_REGISTRY: "10.10.10.10:9080"
|
||||
IMAGE_NAME: "$INTERNAL_REGISTRY/$CI_PROJECT_PATH"
|
||||
CI_SERVER_URL: "http://10.10.10.10:9080"
|
||||
GITLAB_FEATURES: ""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue