add bench docker

This commit is contained in:
Jun Kurihara 2022-06-27 16:10:23 -04:00
commit b870baf1c3
No known key found for this signature in database
GPG key ID: 48ADFD173ED22B03
5 changed files with 45 additions and 2 deletions

30
bench/docker-compose.yml Normal file
View file

@ -0,0 +1,30 @@
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"