File tree 1 file changed +9
-9
lines changed
1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
1
services :
2
2
proxy :
3
- image : proxy
3
+ image : ${PROXY_CONTAINER_NAME}
4
4
build : ./proxy
5
- container_name : proxy
5
+ container_name : ${PROXY_CONTAINER_NAME}
6
6
depends_on :
7
7
- devblog_client
8
8
volumes :
9
- - /home/devmaster/app/proxy/default.conf:/etc/nginx/conf.d/default.conf
10
- - /etc/ssl/certs/${DEVBLOG_CERT_NAME}:/etc/ssl/certs/${DEVBLOG_CERT_NAME }
9
+ - ${PROXY_CONFIG_VOLUME}
10
+ - ${CLIENT_SSL_VOLUME }
11
11
restart : on-failure
12
12
ports :
13
- - 443:443
13
+ - ${SSL_PORTS}
14
14
15
15
devblog_client :
16
16
image : ${DEVBLOG_CONTAINER_NAME}
17
17
build : ./client
18
18
container_name : ${DEVBLOG_CONTAINER_NAME}
19
19
restart : on-failure
20
20
volumes :
21
- - ./client/dist:/app
22
- - ./client/nginx.conf:/etc/nginx/nginx.conf
23
- - /etc/ssl/certs/${DEVBLOG_CERT_NAME}:/etc/ssl/certs/${DEVBLOG_CERT_NAME }
21
+ - ${CLIENT_WASM_VOLUME}
22
+ - ${CLIENT_CONFIG_VOLUME}
23
+ - ${CLIENT_SSL_VOLUME }
24
24
ports :
25
- - 8082:443
25
+ - ${CLIENT_PORTS}
You can’t perform that action at this time.
0 commit comments