nginx-aspnet-mysql: remove DB healthcheck from dev envs config
Signed-off-by: Milas Bowman <milas.bowman@docker.com>
This commit is contained in:
parent
b81f75c9fd
commit
6982b9a82e
@ -6,9 +6,7 @@ services:
|
|||||||
restart: always
|
restart: always
|
||||||
secrets:
|
secrets:
|
||||||
- db-password
|
- db-password
|
||||||
depends_on:
|
depends_on: ['db']
|
||||||
db:
|
|
||||||
condition: service_healthy
|
|
||||||
environment:
|
environment:
|
||||||
- ASPNETCORE_URLS=http://+:8000
|
- ASPNETCORE_URLS=http://+:8000
|
||||||
volumes:
|
volumes:
|
||||||
@ -18,11 +16,6 @@ services:
|
|||||||
image: mariadb:10-focal
|
image: mariadb:10-focal
|
||||||
command: '--default-authentication-plugin=mysql_native_password'
|
command: '--default-authentication-plugin=mysql_native_password'
|
||||||
restart: always
|
restart: always
|
||||||
healthcheck:
|
|
||||||
test: ['CMD-SHELL', 'mysqladmin ping -h 127.0.0.1 --password="$$(cat /run/secrets/db-password)" --silent']
|
|
||||||
interval: 3s
|
|
||||||
retries: 5
|
|
||||||
start_period: 30s
|
|
||||||
secrets:
|
secrets:
|
||||||
- db-password
|
- db-password
|
||||||
volumes:
|
volumes:
|
||||||
|
Loading…
Reference in New Issue
Block a user