Жаль, что я не нашел простого решения после пробного использования, я думаю, что статическое ip-решение @Mostafa Hussein - самое простое для реализации требования.
Результат моего исследования - псевдоним foo.bar
как 127.0.0.1
, и пусть socat
перенаправляет 127.0.0.1
сетевой трафик на mynginx
, здесь socat
может использовать mynginx
, который не может быть используется в extra_hosts:
Итак, мое решение следующее, некрасивое, но на тот случай, если кому-то понадобится позже:
version: '3'
services:
nginx:
image: nginx:alpine
container_name: mynginx
command: [nginx-debug, "-g", "daemon off;"]
ports:
- "444:443"
chrome:
image: zenika/alpine-chrome:latest
container_name: mychrome
command: [chromium-browser, "--headless", "--disable-gpu", "--no-sandbox", "--remote-debugging-address=0.0.0.0", "--remote-debugging-port=9222"]
ports:
- "9222:9222"
extra_hosts:
- "foo.bar:127.0.0.1"
helper:
image: ubuntu:16.04
volumes:
- /usr/bin/docker:/usr/bin/docker
- /var/run/docker.sock:/var/run/docker.sock
- /usr/lib/x86_64-linux-gnu/libltdl.so.7:/usr/lib/x86_64-linux-gnu/libltdl.so.7
tty: true
command: bash -c "docker exec -u root -it mychrome /bin/sh -c \"apk add socat && socat TCP4-LISTEN:80,reuseaddr,fork TCP4:mynginx:80\""
depends_on:
- chrome
И тест:
shubuntu1@shubuntu1:~/99$ docker exec -it mychrome wget -q -O - http://foo.bar
<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
body {
width: 35em;
margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif;
}
</style>
</head>
<body>
<h1>Welcome to nginx!</h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p>
<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.com</a>.</p>
<p><em>Thank you for using nginx.</em></p>
</body>
</html>