mirror of https://github.com/docker/compose.git
15 lines
226 B
YAML
15 lines
226 B
YAML
|
services:
|
||
|
back:
|
||
|
image: nginx:alpine
|
||
|
depends_on:
|
||
|
- db
|
||
|
db:
|
||
|
image: nginx:alpine
|
||
|
front:
|
||
|
image: nginx:alpine
|
||
|
deploy:
|
||
|
replicas: 2
|
||
|
dbadmin:
|
||
|
image: nginx:alpine
|
||
|
deploy:
|
||
|
replicas: 0
|