aboutsummaryrefslogtreecommitdiffstats
path: root/extras/hs-test/topo-containers/nginxProxy.yaml
blob: d9ddc14590f1012e9042a07616b61941dc84c857 (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
---
volumes:
  - volume: &shared-vol-nginx-proxy
      host-dir: "$HST_VOLUME_DIR/shared-vol-nginx-proxy"

containers:
  - name: "vpp"
    volumes:
      - <<: *shared-vol-nginx-proxy
        container-dir: "/tmp/vpp"
        is-default-work-dir: true
  - name: "nginx-proxy"
    volumes:
      - <<: *shared-vol-nginx-proxy
        container-dir: "/tmp/nginx"
        is-default-work-dir: true
    image: "hs-test/nginx-ldp"
    is-optional: true
  - name: "nginx-server"
    volumes:
      - <<: *shared-vol-nginx-proxy
        container-dir: "/tmp/nginx"
        is-default-work-dir: true
    image: "hs-test/nginx-server"
    is-optional: true
  - name: "curl"
    vars:
      - name: LD_LIBRARY_PATH
        value: "/usr/local/lib"
    image: "hs-test/curl"
    is-optional: true
    run-detached: false