docs(docker-compose): Add pull instructions

This commit is contained in:
2023-06-24 23:36:59 +02:00
parent 161967ebac
commit 467e98b01a
3 changed files with 24 additions and 0 deletions

View File

@@ -45,6 +45,14 @@ docker compose --project-name "${COMPOSE_PROJECT}" --file "${COMPOSE_FILE}" --fi
{%- endfor %}
{%- endif %}
## Pull
{% if cookiecutter.build == "yes" %}_FIXME_ Rewrite either [Build](#build) or this paragraph for which images are built and which ones pulled, `--profile 'full'` may not make sense _FIXME_ {% endif %}Pull images from Docker Hub verbatim.
```
docker compose --project-name "${COMPOSE_PROJECT}" --file "${COMPOSE_FILE}" --env-file "${COMPOSE_ENV}" --profile 'full' pull
```
## Start
```