nacos-docker/example/standalone-mysql-5.7.yaml

56 lines
1.3 KiB
YAML
Raw Normal View History

version: "3.8"
2019-05-22 08:18:41 +00:00
services:
nacos:
2021-03-21 07:13:03 +00:00
image: nacos/nacos-server:${NACOS_VERSION}
2019-05-22 08:18:41 +00:00
container_name: nacos-standalone-mysql
env_file:
- ../env/nacos-standlone-mysql.env
2019-05-22 08:18:41 +00:00
volumes:
- ./standalone-logs/:/home/nacos/logs
- ./init.d/custom.properties:/home/nacos/init.d/custom.properties
ports:
- "8848:8848"
2021-04-13 00:31:12 +00:00
- "9848:9848"
2019-05-22 08:18:41 +00:00
- "9555:9555"
depends_on:
mysql:
condition: service_healthy
2019-05-22 08:18:41 +00:00
restart: on-failure
mysql:
container_name: mysql
build:
context: .
dockerfile: ./image/mysql/5.7/Dockerfile
tags:
- "example/mysql:5.7"
image: example/mysql:5.7
2019-05-22 08:18:41 +00:00
env_file:
- ../env/mysql.env
2019-05-22 08:18:41 +00:00
volumes:
- ./mysql:/var/lib/mysql
2019-05-22 08:18:41 +00:00
ports:
- "3306:3306"
healthcheck:
test: [ "CMD", "mysqladmin" ,"ping", "-h", "localhost" ]
interval: 5s
timeout: 10s
retries: 10
2021-03-21 07:13:03 +00:00
# prometheus:
# container_name: prometheus
# image: prom/prometheus:latest
# volumes:
# - ./prometheus/prometheus-standalone.yaml:/etc/prometheus/prometheus.yml
# ports:
# - "9090:9090"
# depends_on:
# - nacos
# restart: on-failure
# grafana:
# container_name: grafana
# image: grafana/grafana:latest
# ports:
# - 3000:3000
# restart: on-failure
2019-05-22 08:18:41 +00:00