dfd3bb209914df26754f318a6b9aafe5131ae625
[cli.git] / deployment / docker / src / main / docker / docker-compose.yaml
1 version: '2.0'
2
3 services:
4   occ:
5     image: onap/cli
6     environment:
7       OPEN_CLI_MODE: 'daemon'
8     ports:
9       - 8080:80
10       - 9090:8080
11
12   cli:
13     stdin_open: true
14     tty: true
15     image: onap/cli
16     environment:
17       OPEN_CLI_MODE: 'console'
18
19   debug:
20     stdin_open: true
21     tty: true
22     image: onap/cli
23     environment:
24       OPEN_CLI_MODE: 'console'
25       OPEN_CLI_DEBUG: "true"
26     ports:
27       - 5005:5005