blob: 844f8b06c79c4ada7256b85319b7f91f45f235e2 [file] [log] [blame]
Brinda Santh4c2b42f2019-10-03 20:02:29 -04001version: '3.3'
2
3services:
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 Timoney2e80cc82020-07-02 11:38:10 -040012 - ../certs:/opt/app/onap/python/certs
Brinda Santh4c2b42f2019-10-03 20:02:29 -040013 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 Santha5ceb242019-10-22 20:47:12 -040020 #AUTH_TYPE: basic-auth
21 #AUTH_TOKEN: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
22 AUTH_TYPE: tls-auth
Brinda Santh4c2b42f2019-10-03 20:02:29 -040023 LOG_FILE: /opt/app/onap/logs/application.log
24
25volumes:
26 blueprints-deploy: