mirror of
https://github.com/sablierapp/sablier.git
synced 2025-12-21 13:23:03 +01:00
* chore(deps): bump to go1.24.0 * use proxy-wasm/proxy-wasm-go-sdk * remove tinygo * update docker image * add missing env * use go tool directive for mockgen * chore: bump Kong/ngx_wasm_module to pre-release 0.6.0 Thanks to https://github.com/Kong/ngx_wasm_module/issues/682 * fix go mod * set caddy to go1.23
36 lines
855 B
YAML
36 lines
855 B
YAML
services:
|
|
envoy:
|
|
image: envoyproxy/envoy:v1.33-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: sablierapp/sablier:local
|
|
command:
|
|
- start
|
|
- --provider.name=docker
|
|
- --logging.level=trace
|
|
volumes:
|
|
- '/var/run/docker.sock:/var/run/docker.sock'
|
|
|
|
whoami:
|
|
image: acouvreur/whoami:v1.10.2
|
|
healthcheck:
|
|
test: [ "CMD", "curl", "-f", "http://localhost" ]
|
|
interval: 5s
|
|
labels:
|
|
- sablier.enable=true
|
|
- sablier.group=E2E
|
|
|
|
nginx:
|
|
image: nginx:1.27.1
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost"]
|
|
interval: 5s
|
|
labels:
|
|
- sablier.enable=true
|
|
- sablier.group=E2E |