mirror of
https://github.com/docker/compose.git
synced 2025-08-31 14:38:12 +02:00
15 lines
248 B
YAML
15 lines
248 B
YAML
services:
|
|
test1:
|
|
pull_policy: build
|
|
build:
|
|
dockerfile_inline: FROM alpine
|
|
command:
|
|
- echo
|
|
- "test 1 success"
|
|
test2:
|
|
image: alpine
|
|
depends_on:
|
|
- test1
|
|
command:
|
|
- echo
|
|
- "test 2 success" |