You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
525 B
15 lines
525 B
#this file contains the shard service for both development and production services
|
|
#nginx mysql srs influxdb
|
|
#https://docs.docker.com/compose/compose-file/
|
|
version: "3.8"
|
|
|
|
services:
|
|
web:
|
|
image: nginx:1.18
|
|
#https://hub.docker.com/_/nginx
|
|
volumes:
|
|
- ./nginx/conf/nginx.conf:/etc/nginx/nginx.conf
|
|
- ./nginx/conf/edusoa.key:/etc/nginx/edusoa.key
|
|
- ./nginx/conf/edusoa.pem:/etc/nginx/edusoa.pem
|
|
- ./nginx/log:/var/log/nginx
|
|
network_mode: "host" |