Skip to content
Draft
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
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,8 @@ docker buildx bake --allow=fs.read=.. \
$(if $(findstring $(comma),$(DOCKER_TARGET_PLATFORMS)),,\
$(if $(local-dest),\
$(foreach service, $(SERVICES_NAMES_TO_BUILD),\
--set $(service).output="type=docker$(comma)dest=$(local-dest)/$(service).tar") \
--set $(service).output="type=oci$(comma)\
compression=zstd$(comma)compression-level=9$(comma)force-compression=true$(comma)dest=$(local-dest)/$(service)zstd.tar") \
,--load\
)\
)\
Expand All @@ -204,7 +205,8 @@ docker buildx bake --allow=fs.read=.. \
--set $(service).tags=$(DOCKER_REGISTRY)/$(service):$(DOCKER_IMAGE_TAG) \
) \
$(foreach service, $(SERVICES_NAMES_TO_BUILD),\
--set $(service).output="type=registry$(comma)push=true" \
--set $(service).output="type=registry$(comma)\
compression=zstd$(comma)compression-level=1$(comma)force-compression=true$$(comma)push=true" \
)\
,) \
$(if $(push),--push,) \
Expand Down
1 change: 0 additions & 1 deletion services/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ x-dask-tls-secrets: &dask_tls_secrets
# mode: 444 # not supported by docker stack compose as of 26.0.0

## common environs

x-common-logging: &common_logging_environments
LOG_FORMAT_LOCAL_DEV_ENABLED: ${LOG_FORMAT_LOCAL_DEV_ENABLED}
LOG_FILTER_MAPPING: ${LOG_FILTER_MAPPING}
Expand Down
Loading