diff --git a/docker-compose/examples/grafana/README.md b/docker-compose/examples/grafana/README.md index 4fed547..c63435e 100644 --- a/docker-compose/examples/grafana/README.md +++ b/docker-compose/examples/grafana/README.md @@ -45,7 +45,7 @@ Copy images to target Docker host, that is assuming you deploy to a machine that source "${COMPOSE_ENV}" # FIXME Docker Hub image name with or without slash? FIXME for image in 'grafana:'"${GRAFANA_VERSION}" 'nginx:'"${NGINX_VERSION}"; do - copy-docker.sh "${image}" fully.qualified.domain.name + copy-docker "${image}" fully.qualified.domain.name done ``` diff --git a/docker-compose/examples/hashicorpvault/README.md b/docker-compose/examples/hashicorpvault/README.md index ac14606..2a2239e 100644 --- a/docker-compose/examples/hashicorpvault/README.md +++ b/docker-compose/examples/hashicorpvault/README.md @@ -66,7 +66,7 @@ Copy images to target Docker host, that is assuming you deploy to a machine that ``` source "${COMPOSE_ENV}" # FIXME Docker Hub image name with or without slash? FIXME -copy-docker.sh 'vault:'"${VAULT_VERSION}" fully.qualified.domain.name +copy-docker 'vault:'"${VAULT_VERSION}" fully.qualified.domain.name ``` ## Start diff --git a/docker-compose/{{ cookiecutter.__project_slug }}/README.md b/docker-compose/{{ cookiecutter.__project_slug }}/README.md index 8e7e504..799e812 100644 --- a/docker-compose/{{ cookiecutter.__project_slug }}/README.md +++ b/docker-compose/{{ cookiecutter.__project_slug }}/README.md @@ -83,10 +83,10 @@ source "${COMPOSE_ENV}" {%- set components = cookiecutter.__component_list_slug.split(',') -%} {%- if ',' in cookiecutter.__component_list_slug %} for image in{% for component in components %} '{{ component }}:'"${% raw %}{{% endraw %}{{ component.upper() }}_VERSION{% raw %}}{% endraw %}"{%- endfor %}; do - copy-docker.sh "${image}" fully.qualified.domain.name + copy-docker "${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 '{{ cookiecutter.__component_list_slug }}:'"${% raw %}{{% endraw %}{{ cookiecutter.__component_list_slug.upper() }}_VERSION{% raw %}}{% endraw %}" fully.qualified.domain.name {%- endif %} ```