blob: 3259c472fed02df52f1293b5a14a958f140d139c [file] [log] [blame]
Richard Jankowskie8eba492017-07-04 16:00:21 -04001#
2# This Docker stackfile deploys a netconf swarm, one container per node.
3#
4# Netconf depends on the following being present:
5# - the 'voltha_net' overlay network
6# - the Voltha service
7#
8# To deploy the stack, issue the command:
9#
10# docker stack deploy -c docker-compose-netconf-swarm.yml netconf
11#
12
13version: "3"
14services:
15 netconf:
16 image: cord/netconf:latest
David K. Bainbridge4e920b72017-10-12 07:49:14 -070017 logging:
18 driver: "json-file"
19 options:
20 max-size: "10m"
21 max-file: 3
Richard Jankowskie8eba492017-07-04 16:00:21 -040022 deploy:
23 mode: global
24 environment:
25 SERVICE_1830_NAME: "netconf-server"
26 entrypoint:
27 - /netconf/netconf/main.py
28 - -v
29 - --consul=consul:8500
30 - --fluentd=fluentd:24224
31 - --grpc-endpoint=voltha:50555
32 - --instance-id-is-container-name
33 networks:
34 - voltha-net
35 ports:
36 - "830:1830"
37 volumes:
38 - /var/run/docker.sock:/tmp/docker.sock
39
40networks:
41 voltha-net:
42 external:
43 name: voltha_net
44