Skip to content

Commit 0f9fb45

Browse files
committed
Add HEALTHCHECK instruction to Dockerfile.
The `Dockerfile` currently does not have a `HEALTHCHECK` instruction. Users of the Docker image currently need to add it manually (e.g. via Docker Compose). Instead, the `Dockerfile` itself should include the instruction. To determine whether the service is healthy, one can use the [`PING`](https://redis.io/docs/latest/commands/ping/) command via the [Redis CLI](https://redis.io/docs/latest/develop/connect/cli/), which is already part of the image. The command “is useful for […] verifying the server's ability to serve data”. Most of the default `HEALTHCHECK` [options](https://docs.docker.com/reference/dockerfile/#healthcheck) seem reasonable: ``` --interval=30s --timeout=30s --start-interval=5s --retries=3 ``` I set `--start-period=1s` because the default of `0s` is too quick for this program. Users of the image can still override the `HEALTHCHECK` instruction if they want to customize the command or the options.
1 parent a8b4897 commit 0f9fb45

File tree

11 files changed

+44
-0
lines changed

11 files changed

+44
-0
lines changed

6.2/alpine/Dockerfile

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

6.2/debian/Dockerfile

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

7.0/alpine/Dockerfile

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

7.0/debian/Dockerfile

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

7.2/alpine/Dockerfile

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

7.2/debian/Dockerfile

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

7.4-rc/alpine/Dockerfile

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

7.4-rc/debian/Dockerfile

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

7.4/alpine/Dockerfile

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

7.4/debian/Dockerfile

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Dockerfile.template

+4
Original file line numberDiff line numberDiff line change
@@ -235,3 +235,7 @@ ENTRYPOINT ["docker-entrypoint.sh"]
235235

236236
EXPOSE 6379
237237
CMD ["redis-server"]
238+
239+
# Search for "PONG" instead of relying on the exit status because of
240+
# https://stackoverflow.com/a/71504657/815742.
241+
HEALTHCHECK --start-period=1s CMD redis-cli ping | grep PONG

0 commit comments

Comments
 (0)