Added healthcheck to MySql db

Signed-off-by: Alvarfo Carpio alvanxp@outlook.com
This commit is contained in:
Alvaro Carpio 2021-05-12 07:57:25 -05:00
parent 744ed86c55
commit 5e961d4e9b

View File

@ -4,12 +4,18 @@ services:
build: backend
secrets:
- db-password
depends_on:
- db
depends_on:
db:
condition: service_healthy
db:
image: mysql:8.0.19
command: '--default-authentication-plugin=mysql_native_password'
restart: always
healthcheck:
test: ["CMD", "mysqladmin", "ping", "-h", "127.0.0.1", "--silent"]
interval: 3s
retries: 5
start_period: 30s
secrets:
- db-password
volumes: