From 40ab99bf8799a028940f34da815fc156f8147553 Mon Sep 17 00:00:00 2001 From: hygienic-books Date: Sun, 25 Jun 2023 00:13:13 +0200 Subject: [PATCH] docs(docker-compose): More _FIXME_ markers --- docker-compose/examples/grafana/README.md | 1 + docker-compose/examples/hashicorpvault/README.md | 1 + docker-compose/{{ cookiecutter.__project_slug }}/README.md | 1 + 3 files changed, 3 insertions(+) diff --git a/docker-compose/examples/grafana/README.md b/docker-compose/examples/grafana/README.md index 91c778e..5db93a0 100644 --- a/docker-compose/examples/grafana/README.md +++ b/docker-compose/examples/grafana/README.md @@ -42,6 +42,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 done diff --git a/docker-compose/examples/hashicorpvault/README.md b/docker-compose/examples/hashicorpvault/README.md index 57639aa..70047b0 100644 --- a/docker-compose/examples/hashicorpvault/README.md +++ b/docker-compose/examples/hashicorpvault/README.md @@ -50,6 +50,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 ``` diff --git a/docker-compose/{{ cookiecutter.__project_slug }}/README.md b/docker-compose/{{ cookiecutter.__project_slug }}/README.md index aceef70..95030d9 100644 --- a/docker-compose/{{ cookiecutter.__project_slug }}/README.md +++ b/docker-compose/{{ cookiecutter.__project_slug }}/README.md @@ -59,6 +59,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 {%- 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