mirror of
https://github.com/docker/compose.git
synced 2025-08-31 22:48:11 +02:00
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 |