We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 059b0f5 commit 13def90Copy full SHA for 13def90
action.yml
@@ -20,13 +20,13 @@ runs:
20
shell: bash
21
id: setup-config
22
env:
23
- SECURE: ${{ inputs.insecureRegistries }}
24
- SSH_GATEWAY_ADDR: ${{ inputs.registryMirrors }}
+ INSECURE_REG: ${{ inputs.insecureRegistries }}
+ REG_MIRRORS: ${{ inputs.registryMirrors }}
25
run: |
26
cat <<EOF | sudo tee /etc/docker/daemon.json
27
{
28
- "insecure-registries" : [${{ inputs.registries }} ],
29
- "registry-mirrors": [${{ inputs.mirrors }}]
+ "insecure-registries" : [${INSECURE_REG} ],
+ "registry-mirrors": [${REG_MIRRORS}]
30
}
31
EOF
32
- name: Reload Docker
0 commit comments