mirror of
https://github.com/sablierapp/sablier.git
synced 2025-12-25 06:49:31 +01:00
* ci: fix pipelines * fix(proxywasm): bump to go 1.23 and tinygo 0.33 * ci: move to sablierapp/sablier * ci: replace sablierapp/whoami with acouvreur/whoami This will use mimic later * fix wrong whoami image * update nginx docker image for proxywasm
37 lines
909 B
YAML
37 lines
909 B
YAML
services:
|
|
apisix:
|
|
image: apache/apisix:3.10.0-debian
|
|
restart: always
|
|
volumes:
|
|
- ./config.yaml:/usr/local/apisix/conf/config.yaml:ro
|
|
- ./apisix.yaml:/usr/local/apisix/conf/apisix.yaml:ro
|
|
- ../../../sablierproxywasm.wasm:/wasm/sablierproxywasm.wasm
|
|
ports:
|
|
- "8080:9080/tcp"
|
|
|
|
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 |