2016-04-20 00:20:57 +02:00
|
|
|
###
|
|
|
|
# Copyright (c) Mainflux
|
|
|
|
#
|
|
|
|
# Mainflux server is licensed under an Apache license, version 2.0 license.
|
|
|
|
# All rights not explicitly granted in the Apache license, version 2.0 are reserved.
|
|
|
|
# See the included LICENSE file for more details.
|
|
|
|
###
|
|
|
|
|
|
|
|
###
|
|
|
|
# MongoDB
|
|
|
|
###
|
|
|
|
mongo:
|
|
|
|
image: mongo:3.2
|
|
|
|
container_name: mainflux-mongodb
|
|
|
|
command: --smallfiles --nojournal
|
|
|
|
|
|
|
|
###
|
|
|
|
# NATS
|
|
|
|
###
|
|
|
|
nats:
|
|
|
|
image: apcera/gnatsd:latest
|
|
|
|
container_name: mainflux-nats
|
2015-07-28 00:50:20 +02:00
|
|
|
ports:
|
2016-04-20 00:20:57 +02:00
|
|
|
- "4222:4222"
|
|
|
|
- "8333:8333"
|
2015-07-28 00:50:20 +02:00
|
|
|
|
2016-04-20 00:20:57 +02:00
|
|
|
###
|
|
|
|
# Mainflux
|
|
|
|
###
|
|
|
|
mainflux:
|
|
|
|
image: mainflux/mainflux-lite:latest
|
|
|
|
container_name: mainflux-api
|
|
|
|
volumes:
|
|
|
|
- ./config:/mainflux/config
|
|
|
|
links:
|
|
|
|
- mongo
|
|
|
|
- nats
|
2015-07-28 00:50:20 +02:00
|
|
|
ports:
|
2016-04-20 21:00:38 +02:00
|
|
|
- "7070:7070"
|