mirror of
https://github.com/mainflux/mainflux.git
synced 2025-05-11 19:29:16 +08:00
35 lines
673 B
YAML
35 lines
673 B
YAML
###
|
|
# Copyright (c) 2015-2017 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.
|
|
###
|
|
|
|
version: "3"
|
|
|
|
services:
|
|
###
|
|
# NATS
|
|
###
|
|
nats:
|
|
image: nats:latest
|
|
container_name: mainflux-nats
|
|
network_mode: bridge
|
|
ports:
|
|
- "4222:4222"
|
|
- "8222:8222"
|
|
|
|
###
|
|
# Cassandra
|
|
###
|
|
cassandra:
|
|
image: cassandra:latest
|
|
container_name: mainflux-cassandra
|
|
network_mode: bridge
|
|
ports:
|
|
- "9042:9042"
|
|
- "9160:9160"
|
|
volumes:
|
|
- ./db:/var/lib/cassandra
|