🐳 dockertest

Write better integration tests! Dockertest helps you boot up ephermal docker images for your Go tests with minimal work.

Docker Ready 4,515 stars
1. Pull Image docker pull ory/dockertest:latest
2. 1-Click Launch Command docker run -d --name dockertest --restart always ory/dockertest:latest
examples/testdata/Dockerfile
FROM postgres:14-alpine
ENV POSTGRES_PASSWORD=secret
ENV POSTGRES_DB=testdb