heruvym/deployments/staging/docker-compose.yaml

29 lines
629 B
YAML

services:
heruvym:
container_name: heruvym
restart: unless-stopped
image: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG.$CI_PIPELINE_ID
ports:
- 1488:1488
expose:
- 1488
networks:
- backend_external
- default
hostname: heruvym
tty: true
environment:
- BB_PORT=1488
- BB_IS_PROD=true
- BB_MINIO_AK=$BB_MINIO_AK
- BB_MINIO_EP=$BB_MINIO_EP
- BB_MINIO_SK=$BB_MINIO_SK
- BB_MONGO_URI=$BB_MONGO_URI
- S3_REGION=$S3_REGION
- JWT_SECRET=$JWT_SECRET
networks:
backend_external:
driver: bridge
attachable: true
internal: true