A library to support tests with throwaway instances of Docker containers for all compatible .NET Standard versions.
docker pull library/python
docker run -d -p 8000:8000 --name testcontainers-dotnet python:3.8-alpine
docker compose up -d
services:
docs:
image: python:3.8-alpine
command: sh -c "pip install -r requirements.txt && mkdocs serve -a 0.0.0.0:8000"
working_dir: /docs
volumes:
- ./:/docs
ports:
- 8000:8000