Configure insecure HTTP registry for Docker Buildx in frontend deployment workflows and update backend registry configuration
This commit is contained in:
parent
3cf745cd14
commit
337e97128d
3 changed files with 12 additions and 1 deletions
|
|
@ -29,7 +29,8 @@ jobs:
|
|||
with:
|
||||
config-inline: |
|
||||
[registry."${{ vars.DOCKER_REGISTRY }}"]
|
||||
ca=["/etc/ssl/certs/ca-certificates.crt"]
|
||||
http = true
|
||||
insecure = true
|
||||
|
||||
- name: Extract metadata
|
||||
id: meta
|
||||
|
|
|
|||
|
|
@ -19,6 +19,11 @@ jobs:
|
|||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
with:
|
||||
config-inline: |
|
||||
[registry."${{ vars.DOCKER_REGISTRY }}"]
|
||||
http = true
|
||||
insecure = true
|
||||
|
||||
- name: Login to Docker Registry
|
||||
uses: docker/login-action@v3
|
||||
|
|
|
|||
|
|
@ -19,6 +19,11 @@ jobs:
|
|||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
with:
|
||||
config-inline: |
|
||||
[registry."${{ vars.DOCKER_REGISTRY }}"]
|
||||
http = true
|
||||
insecure = true
|
||||
|
||||
- name: Login to Docker Registry
|
||||
uses: docker/login-action@v3
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue