httpx/docker-compose-ruby-3.0.yml
2021-01-03 15:39:41 +00:00

28 lines
612 B
YAML

version: '3'
services:
httpx:
image: ruby:3.0-alpine
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"