mirror of
https://github.com/docker/docs.git
synced 2026-03-28 14:58:53 +07:00
* Prepare doc pages for DDL GA release - Add DDL screenshots Signed-off-by: Anca Iordache <anca.iordache@docker.com> * Menu entries for DDL Signed-off-by: Anca Iordache <anca.iordache@docker.com> * update installation instructions Signed-off-by: Anca Iordache <anca.iordache@docker.com> * Update download links Signed-off-by: Anca Iordache <anca.iordache@docker.com>
11 lines
225 B
Makefile
11 lines
225 B
Makefile
.PHONY:
|
|
check:
|
|
for img in $$(git ls-files images); do \
|
|
base=$$(basename "$$img"); \
|
|
if ! git grep -q -F "$$base"; then \
|
|
echo >&2 "unused image: $$img"; \
|
|
pass=false; \
|
|
fi; \
|
|
done; \
|
|
$$pass
|