mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2025-05-10 18:05:44 +02:00
fix(docker): Use the right shebang in healthcheck.sh
(#963)
Alpine images don't have bash installed by default, so we need to use `/bin/sh` instead. This follows the *same existing convention that we follow in the `entrypoint.sh` script*. Both ubuntu and alpine images have been tested (i.e healthchecks to pass) to work with this change.
This commit is contained in:
parent
d2d70289ff
commit
34aec80e5a
1 changed files with 1 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
#!/bin/bash
|
||||
#!/bin/sh
|
||||
|
||||
HOST="localhost"
|
||||
PORT=6379
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue