blob: 7b2f91ebc762c33f2fe9c08cf47044b983aaec30 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
---
volumes:
- volume: &shared-vol
host-dir: "$HST_VOLUME_DIR/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
- name: "nginx-http3"
volumes:
- <<: *shared-vol
container-dir: "/tmp/nginx"
is-default-work-dir: true
- host-dir: $HST_DIR/resources/cert
container-dir: "/etc/nginx/ssl"
image: "hs-test/nginx-http3"
is-optional: true
- name: "nginx-server"
volumes:
- <<: *shared-vol
container-dir: "/tmp/nginx"
is-default-work-dir: true
image: "hs-test/nginx-server"
is-optional: true
- name: "ab"
image: "hs-test/ab"
is-optional: true
run-detached: false
- name: "wrk"
image: "hs-test/wrk"
is-optional: true
run-detached: false
- name: "curl"
vars:
- name: LD_LIBRARY_PATH
value: "/usr/local/lib"
image: "hs-test/curl"
is-optional: true
run-detached: false
- name: "h2load"
image: "hs-test/h2load"
volumes:
- <<: *shared-vol
container-dir: "/tmp/h2load"
is-default-work-dir: true
is-optional: true
run-detached: false
|