blob: f3aafa3d7920fc020842fb1ade1dff05fa6121f7 [file] [log] [blame]
Richard Jankowski29dd1982017-06-28 13:30:18 -04001#
2# This Docker stackfile deploys a Voltha CLI container along with one backup.
3#
4# The stackfile assumes that overlay network 'voltha_net' has already been
5# created. To deploy the stack, issue the command:
6#
7# docker stack deploy -c docker-compose-vcli.yml cli
8#
9
10version: "3"
11services:
12 cli:
13 image: cord/vcli:latest
14 deploy:
15 replicas: 2
16 environment:
17 DOCKER_HOST_IP: "${DOCKER_HOST_IP}"
18 entrypoint:
19 - /cli/cli/setup.sh
20 - -C consul:8500
21 - -g voltha:50555
22 - -s voltha:18880
23 networks:
24 - voltha-net
25 ports:
26 - "5022:22"
27
28networks:
29 voltha-net:
30 external:
31 name: voltha_net
32