blob: bd6e63a945d2a9d7d0a2f978611483d62d8bcc62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
---
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
|