rust-rpxy/bench/docker-compose.yml
2022-06-27 16:10:23 -04:00

30 lines
609 B
YAML

version: "3"
services:
nginx:
image: nginx:alpine
container_name: nginx-web
restart: unless-stopped
environment:
- VIRTUAL_HOST=localhost
- VIRTUAL_PORT=80
ports:
- 127.0.0.1:8888:80
logging:
options:
max-size: "10m"
max-file: "3"
nginx-rp:
image: jwilder/nginx-proxy:alpine
container_name: proxy-nginx
ports:
- 127.0.0.1:8090:80
restart: always
tty: false
privileged: true
volumes:
- /var/run/docker.sock:/tmp/docker.sock:ro
logging:
options:
max-size: "10m"
max-file: "3"