mirror of https://github.com/docker/docs.git
Fix liquid warning (#5109)
This commit is contained in:
parent
9c43b9ad8a
commit
2e2a148fe4
|
@ -16,6 +16,7 @@ image for IBM z Systems. For example, you can modify the CLI command for getting
|
|||
a [UCP support dump](..\..\get-support.md) to use an environment variable
|
||||
that indicates the current architecture:
|
||||
|
||||
{% raw %}
|
||||
```bash
|
||||
[[ $(docker info --format='{{.Architecture}}') == s390x ]] && export _ARCH='-s390x' || export _ARCH=''
|
||||
|
||||
|
@ -26,6 +27,7 @@ docker container run --rm \
|
|||
{{ page.ucp_org }}/{{ page.ucp_repo }}:{{ page.ucp_version }}${_ARCH} \
|
||||
support > docker-support.tgz
|
||||
```
|
||||
{% endraw %}
|
||||
|
||||
In this example, the environment variable is named `_ARCH`, but you can use any
|
||||
valid shell name.
|
||||
|
|
Loading…
Reference in New Issue