blob: 3e543a597431ea82413e6d5c743256d94a6b5d43 [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
khenaidooccc42252017-07-06 23:00:49 -040023 - -G
Richard Jankowski29dd1982017-06-28 13:30:18 -040024 networks:
25 - voltha-net
26 ports:
27 - "5022:22"
28
29networks:
30 voltha-net:
31 external:
32 name: voltha_net
33