Ai
2 Star 0 Fork 0

mirrors_watson/apm-agent-python

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
docker-compose.yml 1.00 KB
一键复制 编辑 原始数据 按行查看 历史
version: '2.1'
services:
postgres:
user: postgres
image: postgres
ports:
- "5432:5432"
environment:
POSTGRES_USER: 'postgres'
POSTGRES_DB: 'elasticapm_test'
healthcheck:
test: ["CMD-SHELL", "pg_isready"]
interval: 1s
timeout: 30s
retries: 3
mongodb:
image: mongo
ports:
- "27017:27017"
memcached:
image: memcached
ports:
- "11211:11211"
redis:
image: redis
ports:
- "6379:6379"
run_tests:
build:
context: .
dockerfile: Dockerfile
environment:
MONGODB_HOST: 'mongodb'
REDIS_HOST: 'redis'
MEMCACHED_HOST: 'memcached'
POSTGRES_USER: 'postgres'
POSTGRES_DB: 'elasticapm_test'
POSTGRES_HOST: 'postgres'
POSTGRES_PORT: '5432'
depends_on:
postgres:
condition: service_healthy
mongodb:
condition: service_started
memcached:
condition: service_started
redis:
condition: service_started
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_watson/apm-agent-python.git
git@gitee.com:mirrors_watson/apm-agent-python.git
mirrors_watson
apm-agent-python
apm-agent-python
master

搜索帮助