httpx/docker-compose-ruby-3.0.yml
HoneyryderChuck f3a241fcc1 ci: do not use links in docker-compose
deprecated for a while, and gitlab ci / dind does not seem to support it anymore.
2024-01-26 02:11:03 +00:00

26 lines
553 B
YAML

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