mirror of
https://github.com/sablierapp/sablier.git
synced 2025-12-21 13:23:03 +01:00
* fix(provider): add debug logging Add a bunch of debug logging calls * return a swarm service pointer * revert to service list with status true * change trace to debug * --no-verify
41 lines
910 B
YAML
41 lines
910 B
YAML
version: '3.9'
|
|
|
|
services:
|
|
proxy:
|
|
image: nginx:1.27.1
|
|
ports:
|
|
- 8080:80
|
|
volumes:
|
|
# Used to load js module
|
|
- ../nginx.conf:/etc/nginx/nginx.conf
|
|
- ../../njs/sablier.js:/etc/nginx/conf.d/sablier.js
|
|
- ./nginx.conf:/etc/nginx/conf.d/default.conf
|
|
|
|
sablier:
|
|
image: sablierapp/sablier:local
|
|
ports:
|
|
- 10000:10000
|
|
command:
|
|
- start
|
|
- --provider.name=docker
|
|
- --logging.level=debug
|
|
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 |