This repository has been archived by the owner on Sep 25, 2024. It is now read-only.
forked from change-metrics/monocle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml.img
73 lines (68 loc) · 2.49 KB
/
docker-compose.yml.img
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
# Monocle.
# Copyright (C) 2019-2020 Monocle authors
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
version: '3'
services:
api:
image: "changemetrics/monocle_backend:${MONOCLE_VERSION:-latest}"
depends_on:
- elastic
ports:
- "${MONOCLE_API_ADDR:-0.0.0.0}:9876:9876"
- "${MONOCLE_API_ADDR:-0.0.0.0}:9877:9877"
environment:
CONFIG: /etc/monocle/config.yaml
ELASTIC_CONN: elastic:9200
ALLOW_ORIGIN: "${MONOCLE_URL:-http://localhost:3000}"
CLIENT_ID: '${GITHUB_CLIENT_ID:-}'
CLIENT_SECRET: '${GITHUB_CLIENT_SECRET:-}'
REDIRECT_URL: '${MONOCLE_API_URL:-http://localhost:9876}/api/0/authorize'
WEB_URL: '${MONOCLE_URL:-http://localhost:3000}'
command: uwsgi --uid guest --gid nogroup --http :9876 --socket :9877 --manage-script-name --mount /app=monocle.webapp:app
volumes:
- $PWD/etc:/etc/monocle:Z
elastic:
image: "docker.elastic.co/elasticsearch/elasticsearch:7.8.0"
ulimits:
nofile:
soft: 65535
hard: 65535
environment:
- "ES_JAVA_OPTS=-Xms${ES_XMS:-512m} -Xmx${ES_XMX:-512m}"
- "discovery.type=single-node"
expose:
- "9200"
volumes:
- $PWD/data:/usr/share/elasticsearch/data:Z
crawler:
image: "changemetrics/monocle_backend:${MONOCLE_VERSION:-latest}"
depends_on:
- elastic
command: monocle --elastic-conn elastic:9200 crawler --config /etc/monocle/config.yaml
environment:
APP_ID: '${GITHUB_APP_ID:-}'
APP_KEY_PATH: '${GITHUB_APP_KEY_PATH:-/etc/monocle/app_key.rsa}'
volumes:
- $PWD/etc:/etc/monocle:Z
- $PWD/dump:/var/lib/crawler:Z
web:
image: "changemetrics/monocle_web:${MONOCLE_VERSION:-latest}"
depends_on:
- api
ports:
- "${MONOCLE_WEB_ADDR:-0.0.0.0}:3000:3000"
environment:
REACT_APP_API_URL: "${MONOCLE_API_URL:-http://localhost:9876}"
REACT_APP_TITLE: "${MONOCLE_TITLE:-}"