Goss container image
Dockerfiles
Using the base image
This is a simple alpine image with Goss preinstalled on it. Can be used as a base image for your projects to allow for easy health checking.
Mount example
Create the container
Create your container and mount goss
Run goss inside your container
HEALTHCHECK example
FROM ghcr.io/goss-org/goss:latest
COPY goss/ /goss/
HEALTHCHECK --interval=1s --timeout=6s CMD goss -g /goss/goss.yaml validate
# your stuff..