Fix: Run both sonar and clm scans in parallel
[ccsdk/cds.git] / ms / py-executor / dc / docker-compose.yaml
1 version: '3.3'
2
3 services:
4   py-executor:
5     image: onap/ccsdk-py-executor
6     container_name: bp-py-executor
7     ports:
8       - "50052:50052"
9     restart: always
10     volumes:
11       - blueprints-deploy:/opt/app/onap/blueprints/deploy
12       - ../certs:/opt/app/onap/python/certs
13     environment:
14       APPLICATIONNAME: PythonExecutor
15       BUNDLEVERSION: 1.0.0
16       APP_CONFIG_HOME: /opt/app/onap/config
17       STICKYSELECTORKEY:
18       ENVCONTEXT: dev
19       APP_PORT: 50052
20       #AUTH_TYPE: basic-auth
21       #AUTH_TOKEN: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
22       AUTH_TYPE: tls-auth
23       LOG_FILE: /opt/app/onap/logs/application.log
24
25 volumes:
26   blueprints-deploy: