mirror of
https://github.com/b4tman/docker-squid.git
synced 2024-11-10 21:56:53 +00:00
12 lines
250 B
YAML
12 lines
250 B
YAML
|
version: '2'
|
||
|
services:
|
||
|
proxy:
|
||
|
build: .
|
||
|
sut:
|
||
|
image: alpine:3.10.1
|
||
|
links:
|
||
|
- proxy
|
||
|
depends_on:
|
||
|
- proxy
|
||
|
command: sh -exc "apk add --update curl && sleep 5 && exec curl --proxy http://proxy:3128 -I http://google.com/"
|