mirror of https://github.com/docker/compose.git
11 lines
132 B
YAML
11 lines
132 B
YAML
|
services:
|
||
|
app:
|
||
|
image: nginx:alpine
|
||
|
volumes_from:
|
||
|
- db
|
||
|
|
||
|
db:
|
||
|
image: nginx:alpine
|
||
|
volumes:
|
||
|
- /var/data
|