mirror of
https://github.com/mainflux/mainflux.git
synced 2025-05-09 19:29:29 +08:00
28 lines
525 B
YAML
28 lines
525 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.
|
|
###
|
|
|
|
###
|
|
# MongoDB
|
|
###
|
|
mongo:
|
|
image: mongo:latest
|
|
container_name: mainflux-mongodb
|
|
command: --smallfiles --nojournal
|
|
|
|
###
|
|
# Mainflux Lite
|
|
###
|
|
mainflux-lite:
|
|
image: mainflux/mainflux-lite:latest
|
|
container_name: mainflux-lite
|
|
links:
|
|
- mongo
|
|
ports:
|
|
- "7070:7070"
|
|
|