diff --git a/docker-compose-local-config.yml b/docker-compose-local-config.yml index e4526843..69084f82 100644 --- a/docker-compose-local-config.yml +++ b/docker-compose-local-config.yml @@ -6,6 +6,16 @@ # See the included LICENSE file for more details. ### +### +# InfluxDB +### +influx: + image: influxdb:latest + container_name: mainflux-influxdb + ports: + - "8083:8083" + - "8086:8086" + ### # MongoDB ### @@ -33,6 +43,7 @@ mainflux-core: volumes: - ./config/core/config.yml:/go/src/github.com/mainflux/mainflux-core-server/config.yml links: + - influx - mongo - nats diff --git a/docker-compose.yml b/docker-compose.yml index bc05d1e6..974fdc24 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -6,11 +6,21 @@ # 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:3.2 + image: mongo:latest container_name: mainflux-mongodb command: --smallfiles --nojournal @@ -31,6 +41,7 @@ mainflux-core: image: mainflux/mainflux-core-server:latest container_name: mainflux-core links: + - influx - mongo - nats