mirror of
https://github.com/jambonz/jambonz-api-server.git
synced 2026-07-13 23:51:53 +00:00
26 lines
494 B
YAML
26 lines
494 B
YAML
version: '3'
|
|
|
|
services:
|
|
mysql:
|
|
image: mysql:5.7
|
|
ports:
|
|
- "3360:3306"
|
|
environment:
|
|
MYSQL_ALLOW_EMPTY_PASSWORD: "yes"
|
|
healthcheck:
|
|
test: ["CMD", "mysqladmin" ,"ping", "-h", "127.0.0.1", "--protocol", "tcp"]
|
|
timeout: 5s
|
|
retries: 10
|
|
redis:
|
|
image: redis:5-alpine
|
|
ports:
|
|
- "16379:6379/tcp"
|
|
depends_on:
|
|
mysql:
|
|
condition: service_healthy
|
|
|
|
influxdb:
|
|
image: influxdb:1.8-alpine
|
|
ports:
|
|
- "8086:8086"
|