Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add make equivalent for docker compose pull #62

Merged
merged 3 commits into from
Mar 14, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,9 @@ stop:
config:
docker compose config

pull:
docker compose pull

status:
docker compose ps

Expand Down Expand Up @@ -180,7 +183,7 @@ endef
export HELP
help: ; @eval "$$HELP"

.PHONY: clean clean-testdata prepare prepare-keys prepare-examples build build-kitodo start down config status test help
.PHONY: clean clean-testdata prepare prepare-keys prepare-examples build build-kitodo start down config pull status test help

# do not search for implicit rules here:
%.zip: ;
Expand Down
10 changes: 10 additions & 0 deletions docs/setup/running.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,16 @@ To see the complete configuration for Docker Compose, do:

docker compose config

## Pulling

To pull the last service images
markusweigelt marked this conversation as resolved.
Show resolved Hide resolved

make pull

(or equivalently:)

docker compose pull


## Status

Expand Down