mirror of https://github.com/docker/compose.git
10 lines
128 B
YAML
10 lines
128 B
YAML
|
services:
|
||
|
a:
|
||
|
image: nginx:alpine
|
||
|
ports: [80]
|
||
|
b:
|
||
|
image: nginx:alpine
|
||
|
ports: [80]
|
||
|
depends_on:
|
||
|
- a
|