blob: e1591fb90196985e641e9f4dcb5ad78ebf8e1416 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
---
volumes:
- volume: &server-vol
host-dir: "$HST_VOLUME_DIR/server-share"
container-dir: "/tmp/server-share"
is-default-work-dir: true
- volume: &client-vol
host-dir: "$HST_VOLUME_DIR/client-share"
container-dir: "/tmp/client-share"
is-default-work-dir: true
containers:
- name: "server-vpp"
volumes:
- <<: *server-vol
- name: "client-vpp"
volumes:
- <<: *client-vol
- name: "server-app"
volumes:
- <<: *server-vol
- name: "client-app"
volumes:
- <<: *client-vol
|