-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
23 lines (23 loc) · 800 Bytes
/
docker-compose.yml
File metadata and controls
23 lines (23 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
version: "2"
services:
kronos:
build:
context: .
dockerfile: Dockerfile
image: kronos:latest
network_mode: bridge
entrypoint:
- /bin/entrypoint.sh
environment:
AWS_S3_ACCESS_KEY_ID: "${AWS_S3_ACCESS_KEY_ID}"
AWS_S3_SECRET_ACCESS_KEY: "${AWS_S3_SECRET_ACCESS_KEY}"
KRONOS_SCORING_REGION: "${KRONOS_SCORING_REGION}" # [ECOSYSTEM] - <maven/pypi/npm>
DEPLOYMENT_PREFIX: "${DEPLOYMENT_PREFIX}" # <DEV/STAGE/PROD> - affects where the data and log for training gets stored.
SERVICE_PORT: "6006"
SERVICE_TIMEOUT: "900"
SPARK_HOME: "/usr/local/spark"
PY4J_VERSION: "py4j-0.10.4-src.zip"
GREMLIN_REST_URL: "${GREMLIN_REST_URL}" # <url>:<port>
# FLASK_LOGGING_LEVEL: "DEBUG"
ports:
- "6006:6006"