blob: a8ce48994eaa21ec45e3e22ea1cc221223be57b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
---
volumes:
- volume: &shared-vol
host-dir: /tmp/shared-vol
containers:
- name: "vpp"
volumes:
- <<: *shared-vol
container-dir: "/tmp/vpp"
is-default-work-dir: true
- name: "nginx"
volumes:
- <<: *shared-vol
container-dir: "/tmp/nginx"
is-default-work-dir: true
image: "hs-test/nginx-ldp"
is-optional: true
|