aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/docker/src/main/docker/docker-compose.yaml
blob: b3bffe77e23038d1cda8a8c2ce7cd6d87a3d2e48 (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:
      - 30260:80
      - 30261: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