fix: use localhost:5000 for registry (host network)
CI/CD Pipeline / lint-test (push) Failing after 1m7s
CI/CD Pipeline / build-push (push) Has been skipped
CI/CD Pipeline / deploy (push) Has been skipped

This commit is contained in:
host-db
2026-06-20 17:45:27 +02:00
parent 354e691ceb
commit 3cd625f171
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -42,7 +42,7 @@ jobs:
with: with:
context: . context: .
push: true push: true
tags: registry.home:5000/admin/hello-world:${{ github.sha }},registry.home:5000/admin/hello-world:latest tags: localhost:5000/admin/hello-world:${{ github.sha }},localhost:5000/admin/hello-world:latest
deploy: deploy:
needs: build-push needs: build-push
+1 -1
View File
@@ -1,6 +1,6 @@
services: services:
app: app:
image: registry.home:5000/admin/hello-world:${TAG:-latest} image: localhost:5000/admin/hello-world:${TAG:-latest}
restart: unless-stopped restart: unless-stopped
networks: networks:
- app-net - app-net