Added db healthcheck
Signed-off-by: GitHub <noreply@github.com>
This commit is contained in:
parent
9475c580e7
commit
7a8c2289ae
@ -8,11 +8,18 @@ services:
|
|||||||
- db
|
- db
|
||||||
environment:
|
environment:
|
||||||
- ASPNETCORE_URLS=http://+:8000
|
- ASPNETCORE_URLS=http://+:8000
|
||||||
|
depends_on:
|
||||||
|
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:
|
||||||
@ -20,6 +27,7 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
- MYSQL_DATABASE=example
|
- MYSQL_DATABASE=example
|
||||||
- MYSQL_ROOT_PASSWORD_FILE=/run/secrets/db-password
|
- MYSQL_ROOT_PASSWORD_FILE=/run/secrets/db-password
|
||||||
|
|
||||||
proxy:
|
proxy:
|
||||||
build: proxy
|
build: proxy
|
||||||
ports:
|
ports:
|
||||||
|
Loading…
Reference in New Issue
Block a user