-
Notifications
You must be signed in to change notification settings - Fork 6
/
sample.env
73 lines (63 loc) · 2.33 KB
/
sample.env
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
###################################
# JPO GeoJsonConverter Docker Environment File #
###################################
# WARNING! The contents of this file may be sensitive. Take care not to add to source control.
#
# Instructions:
# Rename this file from `sample.env` to `.env` and Docker will automatically pick up the variables.
#
# Description:
# This file aggregates all the variables used in docker-compose.yml for ease of use. Variables are
# prefixed with the format DESTINATION_MESSAGETYPE_ to provide guidance. Some variables are filled
# out with commonly used values.
###################################
####################
# General Properties
# (Required) The IP address of Docker host machine which can be found by running "ifconfig"
# Hint: look for "inet addr:" within "eth0" or "en0" for OSX
DOCKER_HOST_IP=
# GitHub properties for pulling the latest version of the JPO-ODE at build time
# NOTE: These variables are only required for building the geojson-converter image, not for running the image
MAVEN_GITHUB_TOKEN=
MAVEN_GITHUB_ORG=usdot-jpo-ode
# Docker compose restart policy: https://docs.docker.com/engine/containers/start-containers-automatically/
RESTART_POLICY="no"
# Available profiles:
# - all
# - geojson_full
# - geojson_converter
# - ode
# - adm
# - geojson_base
# - geojson_converter
# - mongo_full
# - mongo
# - mongo_express
# - kafka_full
# - kafka
# - kafka_setup
# - kafka_ui
# - kafka_schema_registry
# - kafka_connect_standalone
# - kafka
# - mongo
# - kafka_connect
# - kafka_connect
# - kafka_connect
# EXAMPLE: COMPOSE_PROFILES=kafka_connect_standalone,kafka_ui,mongo_express
COMPOSE_PROFILES=geojson_full,kafka,kafka_setup
####################
# Confluent Cloud Properties (for Confluent Cloud support)
# Set to "CONFLUENT" if broker is a Confluent Cloud broker
KAFKA_TYPE=
# Set to actual Confluent Cloud access key and secret values for SASL authentication
CONFLUENT_KEY=
CONFLUENT_SECRET=
# Feature geometry output mode
# Options are GEOJSON_ONLY or WKT, defaults to GEOJSON_ONLY if nothing is specified
# WKT mode will still generate geoJSON output
GEOMETRY_OUTPUT_MODE=
# ACM Logging
ADM_LOG_TO_FILE=false
ADM_LOG_TO_CONSOLE=true
ADM_LOG_LEVEL=INFO