@@ -7,6 +7,9 @@ repo: "git@github.com:CodeNow/big-poppa.git"
77node_version : 4.4.7
88npm_version : 2
99
10+ dockerfile_enviroment : [
11+ " NPM_TOKEN {{ npm_token }}"
12+ ]
1013# for container settings
1114container_envs : >
1215 -e DATADOG_HOST={{ datadog_host_address }}
@@ -16,12 +19,22 @@ container_envs: >
1619 -e INTERCOM_API_KEY={{ big_poppa_intercom_key | default('undefined') }}
1720 -e INTERCOM_APP_ID={{ big_poppa_intercom_id | default('undefined') }}
1821 -e NODE_ENV={{ node_env }}
22+ -e PGUSER={{ big_poppa_pg_user }}
23+ -e PGPASSWORD={{ big_poppa_pg_pass }}
24+ -e PGHOST={{ big_poppa_pg_host }}
25+ -e PGPORT={{ big_poppa_pg_port }}
26+ -e PGDATABASE={{ big_poppa_pg_database }}
1927 -e POSTGRES_CONNECT_STRING=postgres://{{ big_poppa_pg_user }}:{{ big_poppa_pg_pass }}@{{ big_poppa_pg_host }}/{{ big_poppa_pg_database }}
2028 -e RABBITMQ_HOSTNAME={{ rabbit_host_address }}
2129 -e RABBITMQ_PASSWORD={{ rabbit_password }}
2230 -e RABBITMQ_PORT={{ rabbit_port }}
2331 -e RABBITMQ_USERNAME={{ rabbit_username }}
2432 -e ROLLBAR_KEY={{ big_poppa_http_rollbar_token }}
33+ -e MONGO=mongodb://{{ big_poppa_mongo_auth }}@{{ mongo_hosts }}/{{ big_poppa_mongo_database }}
34+ -e MONGO_REPLSET_NAME={{ big_poppa_mongo_replset_name }}
35+ -e GITHUB_VARNISH_HOST={{ github_varnish_host }}
36+ -e GITHUB_VARNISH_PORT={{ github_varnish_port }}
37+ -e GITHUB_PROTOCOL=http
2538
2639container_run_opts : >
2740 -h {{ name }}
0 commit comments