mirror of
https://github.com/sablierapp/sablier.git
synced 2025-12-21 13:23:03 +01:00
* feat(plugin): add `proxywasm` plugin The `proxywasm` plugin is a WASM Filter following the ProxyWasm ABI Specification using the proxywasm go sdk This allows extensibility with any reverse proxy who implements the ProxyWasm ABI Specification. The current WASM Filter was successfully tested with APISIX, Envoy, Nginx with ngx_wasm_module from Kong and Istio. Fixes #145
27 lines
630 B
YAML
27 lines
630 B
YAML
services:
|
|
envoy:
|
|
image: envoyproxy/envoy:v1.30-latest
|
|
command: /usr/local/bin/envoy -c /etc/envoy.yaml
|
|
volumes:
|
|
- ./envoy.yaml:/etc/envoy.yaml
|
|
- ../../../sablierproxywasm.wasm:/etc/sablierproxywasm.wasm
|
|
ports:
|
|
- "8080:8080"
|
|
|
|
sablier:
|
|
image: acouvreur/sablier:local
|
|
command:
|
|
- start
|
|
- --provider.name=docker
|
|
- --logging.level=trace
|
|
volumes:
|
|
- '/var/run/docker.sock:/var/run/docker.sock'
|
|
|
|
whoami:
|
|
image: containous/whoami:v1.5.0
|
|
|
|
nginx:
|
|
image: nginx:1.26.0
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost"]
|
|
interval: 5s |