Brinda Santh | 4c2b42f | 2019-10-03 20:02:29 -0400 | [diff] [blame] | 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 |
Dan Timoney | 2e80cc8 | 2020-07-02 11:38:10 -0400 | [diff] [blame] | 12 | - ../certs:/opt/app/onap/python/certs |
Brinda Santh | 4c2b42f | 2019-10-03 20:02:29 -0400 | [diff] [blame] | 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 |
Brinda Santh | a5ceb24 | 2019-10-22 20:47:12 -0400 | [diff] [blame] | 20 | #AUTH_TYPE: basic-auth |
| 21 | #AUTH_TOKEN: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw== |
| 22 | AUTH_TYPE: tls-auth |
Brinda Santh | 4c2b42f | 2019-10-03 20:02:29 -0400 | [diff] [blame] | 23 | LOG_FILE: /opt/app/onap/logs/application.log |
| 24 | |
| 25 | volumes: |
| 26 | blueprints-deploy: |