1 Star 2 Fork 1

MartinDai/docker-compose-enviroment

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
docker-compose-thanos.yml 862 Bytes
一键复制 编辑 原始数据 按行查看 历史
MartinDai 提交于 2023-04-13 16:04 +08:00 . 端口绑定配置添加双引号
version: '3.7'
services:
thanos-store:
image: raspbernetes/thanos:v0.23.1
container_name: thanos-store
volumes:
- ./thanos/bucket_config.yaml:/bucket_config.yaml
command:
- store
- --data-dir=/var/thanos/store
- --objstore.config-file=bucket_config.yaml
- --http-address=0.0.0.0:19191
- --grpc-address=0.0.0.0:19090
ports:
- "39191:19191"
- "39090:19090"
networks:
- net-thanos
thanos-querier:
image: raspbernetes/thanos:v0.23.1
container_name: thanos-querier
command:
- query
- --http-address=0.0.0.0:19192
- --store=172.16.2.231:19090
- --store=172.16.2.231:29090
- --store=172.16.2.231:39090
- --query.replica-label=node
ports:
- "19192:19192"
networks:
- net-thanos
networks:
net-thanos:
driver: bridge
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Docker
1
https://gitee.com/MartinDai/docker-compose-enviroment.git
git@gitee.com:MartinDai/docker-compose-enviroment.git
MartinDai
docker-compose-enviroment
docker-compose-enviroment
master

搜索帮助