-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
32 lines (32 loc) · 1.01 KB
/
docker-compose.yml
File metadata and controls
32 lines (32 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
version: '3.8'
services:
nginx:
image: ghcr.io/opexdev/nginx
build: .
environment:
- EXPOSED_PORT=$EXPOSED_PORT
- SERVER_NAME_DASHBOARD=$SERVER_NAME_DASHBOARD
- SERVER_NAME_ADMIN_PANEL=$SERVER_NAME_ADMIN_PANEL
- SERVER_NAME_WEB_APP=$SERVER_NAME_WEB_APP
- SERVER_NAME_AUTH=$SERVER_NAME_AUTH
- SERVER_NAME_HEALTH=$SERVER_NAME_HEALTH
- SERVER_NAME_API=$SERVER_NAME_API
- SERVER_NAME_KIBANA=$SERVER_NAME_KIBANA
- SERVER_NAME_GRAFANA=$SERVER_NAME_GRAFANA
- SERVER_NAME_MOBILE_APP=$SERVER_NAME_MOBILE_APP
- SERVER_WALLET_STAT=$SERVER_WALLET_STAT
- SERVER_NAME_KC=$SERVER_NAME_KC
- SERVER_NAME_V2_AUTH=$SERVER_NAME_V2_AUTH
secrets:
- opex_dev_crt
- private_pem
nginx-exporter:
image: nginx/nginx-prometheus-exporter:1.1.0
ports:
- "9113:9113"
command: --nginx.scrape-uri=http://nginx:443/metrics --web.telemetry-path=/metrics
secrets:
opex_dev_crt:
file: opex.dev.crt
private_pem:
file: private.pem