mirror of
https://github.com/b4tman/docker-squid.git
synced 2026-03-12 07:23:46 +00:00
18 lines
597 B
YAML
18 lines
597 B
YAML
version: '2.3'
|
|
services:
|
|
proxy:
|
|
image: "${TEST_TAG}"
|
|
healthcheck:
|
|
test: ["CMD", "sh", "-exc", "curl -s -o /dev/null --max-time 3 -w '%{http_code}' 'http://127.0.0.1:3128/squid-internal-mgr/info' 2> /dev/null | grep -qF '200'"]
|
|
interval: 5s
|
|
timeout: 3s
|
|
retries: 5
|
|
start_period: 1s
|
|
sut:
|
|
image: "${TEST_TAG}"
|
|
links:
|
|
- proxy
|
|
depends_on:
|
|
- proxy
|
|
command: sh -exc "sleep 10 && curl --proxy='http://proxy:3128' -s -o /dev/null --max-time 3 -w '%{http_code}' 'https://postman-echo.com/get?squidtest=ok' 2> /dev/null | grep -qF '200'"
|