blob: 5f353d904ccee9cb3cb6dd615ea2c7e909039235 [file] [log] [blame]
Sergio Slobodrian7c5e8852017-07-31 20:17:14 -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 registry:
13 image: registry:2
14 deploy:
15 replicas: 1
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# - -G
24# networks:
25# - voltha-net
26 ports:
27 - "5001:5000"
28
29#networks:
30# voltha-net:
31# external:
32# name: voltha_net
33