Skip to content

Commit

Permalink
fix(docker): correct healthcheck endpoint in Dockerfile
Browse files Browse the repository at this point in the history
Fixes the Dockerfile referring to an old healthcheck endpoint. The new
one is under `/ar-io` to avoid potential conflicts with Arweave node
paths.
  • Loading branch information
Megumiiiiii authored and djwhitt committed Sep 18, 2023
1 parent 0eef460 commit 38d6a5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ VOLUME /app/data

# EXPOSE PORT AND SETUP HEALTHCHECK
EXPOSE 4000
HEALTHCHECK CMD curl --fail http://localhost:4000/healthcheck || exit 1
HEALTHCHECK CMD curl --fail http://localhost:4000/ar-io/healthcheck || exit 1

# ADD LABELS
LABEL org.opencontainers.image.title="ar.io Core Service"
Expand Down

0 comments on commit 38d6a5b

Please sign in to comment.