mirror of
https://github.com/docker/compose.git
synced 2025-08-19 00:28:16 +02:00
support DOCKER_DEFAULT_PLATFORM when 'compose up --build' add tests to check behaviour when DOCKER_DEFAULT_PLATFORM is defined Signed-off-by: Guillaume Lours <705411+glours@users.noreply.github.com>
24 lines
476 B
YAML
24 lines
476 B
YAML
services:
|
|
serviceA:
|
|
image: build-test-platform-a:test
|
|
build:
|
|
context: ./contextServiceA
|
|
platforms:
|
|
- linux/amd64
|
|
- linux/arm64
|
|
serviceB:
|
|
image: build-test-platform-b:test
|
|
build:
|
|
context: ./contextServiceB
|
|
platforms:
|
|
- linux/amd64
|
|
- linux/arm64
|
|
serviceC:
|
|
image: build-test-platform-c:test
|
|
build:
|
|
context: ./contextServiceC
|
|
platforms:
|
|
- linux/amd64
|
|
- linux/arm64
|
|
|