Skip to content

Instantly share code, notes, and snippets.

@jnst
Created August 10, 2018 06:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jnst/adbedcb2e0873489bef017e2935c9220 to your computer and use it in GitHub Desktop.
Save jnst/adbedcb2e0873489bef017e2935c9220 to your computer and use it in GitHub Desktop.
Nginx by Alpine Linux
FROM nginx:mainline-alpine
HEALTHCHECK --interval=5s --timeout=3s --start-period=5s --retries=1 \
CMD wget -q -O - http://localhost/ || exit 1
CMD ["nginx", "-g", "daemon off;"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment