forked from StakeSquid/graphprotocol-mainnet-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
compose-optional.yml
126 lines (104 loc) · 3.88 KB
/
compose-optional.yml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
version: '2.1'
x-logging:
&default-logging
options:
max-file: '1'
compress: 'false'
driver: local
networks:
monitor-net:
driver: bridge
volumes:
nginx_certs: {}
nginx_vhost: {}
nginx_html: {}
nginx_acme: {}
services:
######################################################################################
##################### POIFIER CONTAINER #######################
######################################################################################
poifier:
image: grassets/poifier-client:v2.0.0
container_name: poifier
command:
- '--poifier-server=https://poifier.io'
- '--graph-node-status-endpoint=http://index-node-0:8030/graphql'
- '--mnemonic=${OPERATOR_SEED_PHRASE}'
- '--indexer-address=${STAKING_WALLET_ADDRESS}'
- '--indexer-agent-epoch-subgraph-endpoint=${INDEXER_AGENT_EPOCH_SUBGRAPH_ENDPOINT:-https://api.thegraph.com/subgraphs/name/graphprotocol/mainnet-epoch-block-oracle}'
tty: true
networks:
- monitor-net
restart: unless-stopped
######################################################################################
##################### INDEXER AGENT GUI #######################
######################################################################################
indexer-agent-gui:
image: ${INDEXER_AGENT_GUI:-ghcr.io/stakemachine/indexer-agent-ui:v0.1.9}
container_name: indexer-agent-gui
expose:
- 3000
environment:
- UI_LOGIN=${ADMIN_USER:-test}
- UI_PASS=${ADMIN_PASSWORD:-pass}
- AGENT_ENDPOINT=${INDEXER_AGENT_ENDPOINT:-http://indexer-agent:8000}
- SUBGRAPH_ENDPOINT=${INDEXER_AGENT_NETWORK_SUBGRAPH_ENDPOINT:-https://gateway.thegraph.com/network}
- NEXTAUTH_SECRET=${NEXTAUTH_SECRET}
- NEXTAUTH_URL=https://${AGENT_GUI_HOST}/
- VIRTUAL_HOST=${AGENT_GUI_HOST}
- VIRTUAL_PORT=3000
- LETSENCRYPT_HOST=${AGENT_GUI_HOST}
restart: unless-stopped
networks:
- monitor-net
logging: *default-logging
######################################################################################
##################### NGINX PROXY CONTAINER #######################
######################################################################################
nginx-proxy:
image: jwilder/nginx-proxy
container_name: nginx-proxy
depends_on:
- indexer-agent-gui
#environment:
# PROMETHEUS_HOST: ${PROMETHEUS_HOST}
# HTTP_AUTH_LOGIN: ${HTTP_AUTH_USER}
# HTTP_AUTH_PASSWORD: ${HTTP_AUTH_PASSWORD}
ports:
- "80:80"
- "443:443"
volumes:
- /var/run/docker.sock:/tmp/docker.sock:ro
- nginx_certs:/etc/nginx/certs
- nginx_vhost:/etc/nginx/vhost.d
- nginx_html:/usr/share/nginx/html
# - ./nginx-proxy/htpasswd:/etc/nginx/htpasswd
- ./nginx-proxy/nginx.conf:/etc/nginx/nginx.conf:ro
networks:
- monitor-net
restart: unless-stopped
logging: *default-logging
######################################################################################
##################### NGINX SSL CONTAINER #######################
######################################################################################
nginx-ssl:
image: jrcs/letsencrypt-nginx-proxy-companion
container_name: nginx-ssl
depends_on:
- indexer-agent-gui
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
- nginx_certs:/etc/nginx/certs
- nginx_vhost:/etc/nginx/vhost.d
- nginx_html:/usr/share/nginx/html
- nginx_acme:/etc/acme.sh
# - ./nginx-proxy/htpasswd:/etc/nginx/htpasswd
- ./nginx-proxy/nginx.conf:/etc/nginx/nginx.conf:ro
restart: unless-stopped
networks:
- monitor-net
restart: unless-stopped
environment:
NGINX_PROXY_CONTAINER: nginx-proxy
DEFAULT_EMAIL: ${EMAIL}
logging: *default-logging