blob: 8262232eff8fe5a4f88c491a6d11fcf6fe4bbddc (
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
26
27
28
29
30
31
|
---
volumes:
- server-share
- client-share
containers:
- name: "server-vpp"
volumes:
- host-dir: "server-share"
container-dir: "/tmp/server-share"
is-default-work-dir: true
- host-dir: "/tmp/server"
container-dir: "/tmp/server"
- name: "client-vpp"
volumes:
- host-dir: "client-share"
container-dir: "/tmp/client-share"
is-default-work-dir: true
- host-dir: "/tmp/client"
container-dir: "/tmp/client"
- name: "server-application"
volumes:
- host-dir: "server-share"
container-dir: "/tmp/server-share"
is-default-work-dir: true
- name: "client-application"
volumes:
- host-dir: "client-share"
container-dir: "/tmp/client-share"
is-default-work-dir: true
|