aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/docker/src/main/docker/docker-compose.yaml
blob: f6273cb80091294e63964e4075db9c82fec1dbd3 (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
26
27
28
29
30
31
32
version: '2.0'

services:
  occ:
    image: onap/cli
    environment:
      CLI_MODE: 'daemon'
    expose:
      - 80
      - 8080
    ports:
      - 8080:80
      - 9090:8080

  cli:
    stdin_open: true
    tty: true
    image: onap/cli
    environment:
      CLI_MODE: 'console'

  debug:
    stdin_open: true
    tty: true
    image: onap/cli
    environment:
      CLI_MODE: 'console'
      ONAP_CLI_DEBUG: "true"
    expose:
      - 5005
    ports:
      - 5005:5005