2023-09-06 14:48:49 -05:00
|
|
|
version: '3.8'
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
|
|
|
proxy:
|
|
|
|
image: nginx:stable
|
2023-09-06 16:49:15 -05:00
|
|
|
container_name: "cors-proxy-nginx"
|
2023-09-06 14:48:49 -05:00
|
|
|
ports:
|
|
|
|
- 8080:80
|
|
|
|
volumes:
|
|
|
|
- ./nginx-conf/default.conf.template:/etc/nginx/templates/default.conf.template
|
2023-09-06 16:49:15 -05:00
|
|
|
- ./nginx_logs:/var/log/nginx
|
2023-09-06 19:48:14 -05:00
|
|
|
- ./nginx-conf/nginx.conf:/etc/nginx/nginx.conf
|