httpx/docker-compose-ruby-3.0.yml
2021-04-19 15:43:52 +01:00

28 lines
605 B
YAML

version: '3'
services:
httpx:
image: ruby:3.0
environment:
- HTTPBIN_COALESCING_HOST=another
- HTTPX_RESOLVER_URI=https://doh/dns-query
links:
- "nghttp2:another"
depends_on:
- doh
doh:
image: registry.gitlab.com/honeyryderchuck/httpx/nghttp2:2
depends_on:
- doh-proxy
entrypoint:
/usr/local/bin/nghttpx
volumes:
- ./test/support/ci:/home
command:
--conf /home/doh-nghttp.conf --no-ocsp --frontend 0.0.0.0,443
doh-proxy:
image: publicarray/doh-proxy
environment:
- "UNBOUND_SERVICE_HOST=127.0.0.11"