aboutsummaryrefslogtreecommitdiffstats
path: root/ms/py-executor/dc/docker-compose.yaml
blob: 63c5eeb4f67db819da4392613d255fe876b747cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
version: '3.3'

services:
  py-executor:
    image: onap/ccsdk-py-executor
    container_name: bp-py-executor
    ports:
      - "50052:50052"
    restart: always
    volumes:
      - blueprints-deploy:/opt/app/onap/blueprints/deploy
    environment:
      APPLICATIONNAME: PythonExecutor
      BUNDLEVERSION: 1.0.0
      APP_CONFIG_HOME: /opt/app/onap/config
      STICKYSELECTORKEY:
      ENVCONTEXT: dev
      APP_PORT: 50052
      #AUTH_TYPE: basic-auth
      #AUTH_TOKEN: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
      AUTH_TYPE: tls-auth
      LOG_FILE: /opt/app/onap/logs/application.log

volumes:
  blueprints-deploy: