answerer/deployments/staging/docker-compose.yaml

21 lines
685 B
YAML
Raw Normal View History

2024-02-19 18:27:12 +00:00
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'
2024-04-21 22:38:45 +00:00
PG_CRED: 'host=10.8.0.5 port=5433 user=squiz password=Redalert2 dbname=squiz sslmode=disable'
REDIS_HOST: '10.8.0.5:6379'
2024-02-19 18:27:12 +00:00
REDIS_PASSWORD: 'Redalert2'
REDIS_DB: 2
ports:
2024-04-21 22:38:45 +00:00
- 10.8.0.5:1490:1490