Files
sablier/plugins/caddy/e2e/docker/docker-compose.yml
2024-10-20 23:54:53 -04:00

37 lines
758 B
YAML

version: "3.7"
services:
proxy:
image: caddy:local
ports:
- "8080:80"
volumes:
- ./Caddyfile:/etc/caddy/Caddyfile:ro
restart: "no"
sablier:
image: sablierapp/sablier:local
command:
- start
- --provider.name=docker
- --logging.level=trace
volumes:
- '/var/run/docker.sock:/var/run/docker.sock'
whoami:
image: sablierapp/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