21 lines
678 B
YAML
21 lines
678 B
YAML
|
services:
|
||
|
answerer:
|
||
|
hostname: squiz-answerer
|
||
|
container_name: squiz-answerer
|
||
|
image: $CI_REGISTRY_IMAGE/staging-answerer:$CI_COMMIT_REF_SLUG.$CI_PIPELINE_ID
|
||
|
tty: true
|
||
|
environment:
|
||
|
IS_PROD_LOG: 'false'
|
||
|
IS_PROD: 'false'
|
||
|
PUBLIC_ACCESS_SECRET_KEY: $JWT_PUBLIC_KEY
|
||
|
PORT: 1490
|
||
|
MINIO_EP: 'storage.yandexcloud.net'
|
||
|
MINIO_AK: 'YCAJEOcqqTHpiwL4qFwLfHPNA'
|
||
|
MINIO_SK: 'YCNIAIat0XqdDzycWsYKX3OU7mPor6S0WmMoG4Ry'
|
||
|
PG_CRED: 'host=10.6.0.23 port=5433 user=squiz password=Redalert2 dbname=squiz sslmode=disable'
|
||
|
REDIS_HOST: '10.6.0.23:6379'
|
||
|
REDIS_PASSWORD: 'Redalert2'
|
||
|
REDIS_DB: 2
|
||
|
ports:
|
||
|
- 1490:1490
|