| --- |
| volumes: |
| - volume: &server-vol |
| host-dir: server-share |
| - volume: &client-vol |
| host-dir: client-share |
| |
| containers: |
| - name: "server-vpp" |
| volumes: |
| - <<: *server-vol |
| container-dir: "/tmp/server-share" |
| is-default-work-dir: true |
| - host-dir: "/tmp/server" |
| container-dir: "/tmp/server" |
| - name: "client-vpp" |
| volumes: |
| - <<: *client-vol |
| container-dir: "/tmp/client-share" |
| is-default-work-dir: true |
| - host-dir: "/tmp/client" |
| container-dir: "/tmp/client" |
| - name: "server-application" |
| volumes: |
| - <<: *server-vol |
| container-dir: "/tmp/server-share" |
| is-default-work-dir: true |
| - name: "client-application" |
| volumes: |
| - <<: *client-vol |
| container-dir: "/tmp/client-share" |
| is-default-work-dir: true |
| |