mirror of https://github.com/docker/compose.git
Document depends_on
Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
This commit is contained in:
parent
0554c6e6fd
commit
9a3378930f
|
@ -169,6 +169,29 @@ client create option.
|
|||
devices:
|
||||
- "/dev/ttyUSB0:/dev/ttyUSB0"
|
||||
|
||||
### depends_on
|
||||
|
||||
Express dependency between services, which has two effects:
|
||||
|
||||
- `docker-compose up` will start services in dependency order. In the following
|
||||
example, `db` and `redis` will be started before `web`.
|
||||
|
||||
- `docker-compose up SERVICE` will automatically include `SERVICE`'s
|
||||
dependencies. In the following example, `docker-compose up web` will also
|
||||
create and start `db` and `redis`.
|
||||
|
||||
version: 2
|
||||
services:
|
||||
web:
|
||||
build: .
|
||||
depends_on:
|
||||
- db
|
||||
- redis
|
||||
redis:
|
||||
image: redis
|
||||
db:
|
||||
image: postgres
|
||||
|
||||
### dns
|
||||
|
||||
Custom DNS servers. Can be a single value or a list.
|
||||
|
|
Loading…
Reference in New Issue