16 lines
336 B
YAML
16 lines
336 B
YAML
|
|
|
|
services:
|
|
web:
|
|
image: nginx
|
|
container_name: playwrightReports
|
|
volumes:
|
|
- ./conf/nginx.conf:/etc/nginx/nginx.conf
|
|
- ./vhost:/etc/nginx/conf.d/vhost
|
|
- ./playwright-reports:/usr/share/nginx/html/playwright-reports
|
|
ports:
|
|
- "8080:80"
|
|
environment:
|
|
- NGINX_PORT=80
|
|
- TZ=Asia/Taipei
|