mirror of
https://github.com/chatopera/cosin.git
synced 2025-06-16 18:30:03 +08:00
14 lines
267 B
YAML
14 lines
267 B
YAML
version: "3"
|
|
services:
|
|
nginx:
|
|
image: nginx
|
|
restart: always
|
|
ports:
|
|
- 80:80
|
|
- 443:443
|
|
volumes:
|
|
- ./nginx/logs:/var/log/nginx
|
|
- ./nginx/conf.d:/etc/nginx/conf.d
|
|
- ./nginx/certs:/certs
|
|
depends_on:
|
|
- contact-center |