Skip to content

Commit

Permalink
Shorter docker healthcheck interval (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
niekcandaele committed May 16, 2020
1 parent b8080d6 commit 5e86fef
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 @@ -16,7 +16,7 @@ RUN npm ci --only=production
# Bundle app source
COPY --chown=node:node . .

HEALTHCHECK --interval=30s --timeout=2s --start-period=10s --retries=3 CMD [ "node", "/usr/src/app/scripts/healthcheck.js" ]
HEALTHCHECK --interval=10s --timeout=2s --start-period=10s --retries=3 CMD [ "node", "/usr/src/app/scripts/healthcheck.js" ]

# Install 7d2d item icons
RUN bash /usr/src/app/scripts/itemIconsUpdate.sh
Expand Down

0 comments on commit 5e86fef

Please sign in to comment.