Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [2.2.4] - 2025-12-15

### Added
- **Docker Compose module**: New `dc/pull` target to pull latest images for all services

## [2.2.3] - 2025-12-15

### Fixed
Expand Down
3 changes: 3 additions & 0 deletions modules/containers/docker_compose/docker_compose.mk
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,9 @@ dc/build:: ## Build all containers
$(call mb_os_detection)
$(call dc_invoke,build,--parallel $(if $(mb_os_is_linux_or_osx),$(dc_build_args_linux_mac)))

dc/pull: ## Pull latest images for all services
$(call dc_invoke,pull)

dc/rebuild: ## Rebuild all containers (calls dc/stop & dc/build with --no-cache & dc/start)
dc/rebuild: dc/stop
dc/rebuild: dc_cmd_options_build := --no-cache
Expand Down