docs(docker-compose): Typo

This commit is contained in:
hygienic-books 2023-06-25 00:00:43 +02:00
parent 71a2fe1beb
commit 9e9ec037b8
2 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ Copy images to target Docker host, that is assuming you deploy to a machine that
```
source "${COMPOSE_ENV}"
copy-docker.sh 'vault':"${VAULT_VERSION}" fully.qualified.domain.name
copy-docker.sh 'vault:'"${VAULT_VERSION}" fully.qualified.domain.name
```
## Start

View File

@ -65,7 +65,7 @@ for image in{% for component in components %} '{{ component }}:'"${% raw %}{{% e
copy-docker.sh "${image}" fully.qualified.domain.name
done
{%- else %}
copy-docker.sh '{{ cookiecutter.__component_list_slug }}':"${% raw %}{{% endraw %}{{ cookiecutter.__component_list_slug.upper() }}_VERSION{% raw %}}{% endraw %}" fully.qualified.domain.name
copy-docker.sh '{{ cookiecutter.__component_list_slug }}:'"${% raw %}{{% endraw %}{{ cookiecutter.__component_list_slug.upper() }}_VERSION{% raw %}}{% endraw %}" fully.qualified.domain.name
{%- endif %}
```