mirror of https://github.com/docker/compose.git
14 lines
226 B
YAML
14 lines
226 B
YAML
|
version: "3.6"
|
||
|
services:
|
||
|
service_a:
|
||
|
image: bash
|
||
|
command: echo "a"
|
||
|
depends_on:
|
||
|
- shared_dep
|
||
|
service_b:
|
||
|
image: bash
|
||
|
command: echo "b"
|
||
|
depends_on:
|
||
|
- shared_dep
|
||
|
shared_dep:
|
||
|
image: bash
|