aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/docker/src/main/docker/docker-compose.yaml
blob: dfd3bb209914df26754f318a6b9aafe5131ae625 (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
version: '2.0'

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

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

  debug:
    stdin_open: true
    tty: true
    image: onap/cli
    environment:
      OPEN_CLI_MODE: 'console'
      OPEN_CLI_DEBUG: "true"
    ports:
      - 5005:5005