customer/deployments/staging/docker-compose.yaml

32 lines
730 B
YAML
Raw Normal View History

2023-05-16 01:12:07 +00:00
version: "3.3"
services:
pena-social-auth-service:
container_name: pena-social-auth-service
restart: unless-stopped
tty: true
image: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG.$CI_PIPELINE_ID
environment:
- ENVIRONMENT=staging
- HTTP_HOST=0.0.0.0
- HTTP_PORT=8000
- MONGO_HOST=10.6.0.11
- MONGO_PORT=27017
- MONGO_USER=$MONGO_USER
- MONGO_PASSWORD=$MONGO_PASSWORD
- MONGO_DB_NAME=socialAuth
- MONGO_AUTH=socialAuth
- JWT_PUBLIC_KEY=$JWT_PUBLIC_KEY
- JWT_ISSUER=pena-auth-service
- JWT_AUDIENCE=pena
expose:
- 8000
networks:
- marketplace_penahub_frontend
networks:
marketplace_penahub_frontend:
external: true