1
0
mirror of https://github.com/mainflux/mainflux.git synced 2025-05-11 19:29:16 +08:00
Mainflux.mainflux/docker/docker-compose.yml
Drasko DRASKOVIC 2d8ddd7b0c Organize Docker stuff
Signed-off-by: Drasko DRASKOVIC <drasko.draskovic@gmail.com>
2016-10-04 23:28:08 +02:00

50 lines
835 B
YAML

###
# 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.
###
###
# InfluxDB
###
#influx:
# image: influxdb:latest
# container_name: mainflux-influxdb
# ports:
# - "8083:8083"
# - "8086:8086"
###
# MongoDB
###
mongo:
image: mongo:latest
container_name: mainflux-mongodb
command: --smallfiles --nojournal
###
# Emqttd
###
emqttd:
image: mainflux/emqttd-docker:latest
container_name: mainflux-emqttd
ports:
- "1883:1883"
- "8083:8083"
- "18083:18083"
###
# Mainflux Core Server
###
mainflux-server:
image: mainflux/mainflux:latest
container_name: mainflux-server
links:
- influx
- mongo
- emdttd