mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-10-04 00:00:37 -04:00
26 lines
553 B
YAML
26 lines
553 B
YAML
version: '3'
|
|
services:
|
|
httpx:
|
|
image: ruby:3.3
|
|
environment:
|
|
- HTTPBIN_COALESCING_HOST=another
|
|
- HTTPX_RESOLVER_URI=https://doh/dns-query
|
|
depends_on:
|
|
- doh
|
|
|
|
doh:
|
|
image: registry.gitlab.com/os85/httpx/nghttp2:1
|
|
depends_on:
|
|
- doh-proxy
|
|
entrypoint:
|
|
/usr/local/bin/nghttpx
|
|
volumes:
|
|
- ./test/support/ci:/home
|
|
command:
|
|
--conf /home/doh-nghttp.conf --no-ocsp --frontend '*,443'
|
|
|
|
doh-proxy:
|
|
image: publicarray/doh-proxy
|
|
environment:
|
|
- "UNBOUND_SERVICE_HOST=127.0.0.11"
|