Skip to content

Commit

Permalink
Clean up noisy healthcheck log (dperson#313)
Browse files Browse the repository at this point in the history
Co-authored-by: Hamish Rae-Hodgson <[email protected]>
  • Loading branch information
2 people authored and David Personette committed Jul 3, 2020
1 parent c1cea54 commit 876e3c9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN apk --no-cache --no-progress upgrade && \
COPY openvpn.sh /usr/bin/

HEALTHCHECK --interval=60s --timeout=15s --start-period=120s \
CMD curl -L 'https://api.ipify.org'
CMD curl -LSs 'https://api.ipify.org'

VOLUME ["/vpn"]

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.aarch64
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN apk --no-cache --no-progress upgrade && \
COPY openvpn.sh /usr/bin/

HEALTHCHECK --interval=60s --timeout=15s --start-period=120s \
CMD curl -L 'https://api.ipify.org'
CMD curl -LSs 'https://api.ipify.org'

VOLUME ["/vpn"]

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.armhf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN apk --no-cache --no-progress upgrade && \
COPY openvpn.sh /usr/bin/

HEALTHCHECK --interval=60s --timeout=15s --start-period=120s \
CMD curl -L 'https://api.ipify.org'
CMD curl -LSs 'https://api.ipify.org'

VOLUME ["/vpn"]

Expand Down

0 comments on commit 876e3c9

Please sign in to comment.