1 Star 0 Fork 0

亻紫菜彡/docker-compose

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
docker-compose-influxdb.yml 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
亻紫菜彡 提交于 2024-06-12 09:15 +08:00 . fix: update influx config
version: '3'
services:
influxdb:
# influxdb2登录方式改变,还是使用1.8版本
image: influxdb:1.8
container_name: influxdb
ports:
- 8083:8083
- 8086:8086
- 8090:8090
environment:
- INFLUXDB_DB=db0
- INFLUXDB_ADMIN_USER=admin
- INFLUXDB_ADMIN_PASSWORD=admin123
volumes:
- ./influxdb/data:/var/lib/influxdb
- ./influxdb/influxdb.conf:/etc/influxdb/influxdb.conf
chronograf:
image: chronograf
container_name: chronograf
depends_on:
- influxdb
ports:
- 8888:8888
volumes:
- ./chronograf/data:/var/lib/chronograf
grafana:
image: grafana/grafana:latest
container_name: grafana
ports:
- 3000:3000
environment:
- GF_SECURITY_ADMIN_USER=admin
- GF_SECURITY_ADMIN_PASSWORD=admin123
depends_on:
- influxdb
user: "472"
volumes:
- ./grafana/data:/var/lib/grafana
- ./grafana/provisioning/:/etc/grafana/provisioning
- ./grafana/plugins:/var/lib/grafana/plugins
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zicai1026/docker-compose.git
git@gitee.com:zicai1026/docker-compose.git
zicai1026
docker-compose
docker-compose
master

搜索帮助