mirror of https://github.com/aldy505/databases.git
add influxdb
This commit is contained in:
parent
46508973d6
commit
3a42f3181f
|
@ -73,6 +73,18 @@ services:
|
||||||
- discovery.type=single-node
|
- discovery.type=single-node
|
||||||
volumes:
|
volumes:
|
||||||
- "./volume/elasticsearch/:/usr/share/elasticsearch/data"
|
- "./volume/elasticsearch/:/usr/share/elasticsearch/data"
|
||||||
|
influxdb:
|
||||||
|
image: influxdb:2.1.1-alpine
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- 8086:8086
|
||||||
|
environment:
|
||||||
|
DOCKER_INFLUXDB_INIT_USERNAME: root
|
||||||
|
DOCKER_INFLUXDB_INIT_PASSWORD: password
|
||||||
|
DOCKER_INFLUXDB_INIT_ORG: root
|
||||||
|
DOCKER_INFLUXDB_INIT_BUCKET: public
|
||||||
|
volumes:
|
||||||
|
- "./volume/influxdb/:/var/lib/influxdb"
|
||||||
mongo-express:
|
mongo-express:
|
||||||
image: mongo-express:1.0.0-alpha.4
|
image: mongo-express:1.0.0-alpha.4
|
||||||
restart: always
|
restart: always
|
||||||
|
|
Loading…
Reference in New Issue