-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
32 lines (30 loc) · 1.01 KB
/
docker-compose.yaml
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
version: "3.8"
services:
envoy:
image: envoyproxy/envoy:v1.31-latest
hostname: envoy
ports:
- "10000:10000"
volumes:
- ./envoy.yaml:/etc/envoy/envoy.yaml
# - ./notes/configs/envoy-auth0.yaml:/etc/envoy/envoy.yaml
# - ./notes/configs/envoy-wwu.yaml:/etc/envoy/envoy.yaml
- ./target/wasm32-wasip1/release:/etc/envoy/proxy-wasm-plugins
networks:
- envoymesh
# Additional options:
# For debugging add this: --component-log-level wasm:debug
# If you want to test with 1 thread, add this: --concurrency 1
command: envoy -c /etc/envoy/envoy.yaml --concurrency 1 --component-log-level wasm:debug
# command: envoy -c /etc/envoy/envoy.yaml --concurrency 1
# command: envoy -c /etc/envoy/envoy.yaml --concurrency 5 --component-log-level wasm:debug
# command: envoy -c /etc/envoy/envoy.yaml --concurrency 5
httpbin:
image: kennethreitz/httpbin
hostname: httpbin
ports:
- "80:80"
networks:
- envoymesh
networks:
envoymesh: {}