Added healthcheck to MySql db
Signed-off-by: Alvarfo Carpio alvanxp@outlook.com Signed-off-by: Alvaro Carpio <acarpio@arrivelogistics.com>
This commit is contained in:
parent
744ed86c55
commit
85ae96d12a
@ -4,12 +4,18 @@ services:
|
|||||||
build: backend
|
build: backend
|
||||||
secrets:
|
secrets:
|
||||||
- db-password
|
- db-password
|
||||||
depends_on:
|
depends_on:
|
||||||
- db
|
db:
|
||||||
|
condition: service_healthy
|
||||||
db:
|
db:
|
||||||
image: mysql:8.0.19
|
image: mysql:8.0.19
|
||||||
command: '--default-authentication-plugin=mysql_native_password'
|
command: '--default-authentication-plugin=mysql_native_password'
|
||||||
restart: always
|
restart: always
|
||||||
|
healthcheck:
|
||||||
|
test: ["CMD", "mysqladmin", "ping", "-h", "127.0.0.1", "--silent"]
|
||||||
|
interval: 3s
|
||||||
|
retries: 5
|
||||||
|
start_period: 30s
|
||||||
secrets:
|
secrets:
|
||||||
- db-password
|
- db-password
|
||||||
volumes:
|
volumes:
|
||||||
|
Loading…
Reference in New Issue
Block a user