🐳 testcontainers-dotnet

A library to support tests with throwaway instances of Docker containers for all compatible .NET Standard versions.

Docker Ready 1 Services Ports: 8000 4,299 stars
1. Pull Image docker pull library/python
2. 1-Click Launch Command docker run -d -p 8000:8000 --name testcontainers-dotnet python:3.8-alpine
3. Compose Deployment docker compose up -d
compose.yml
Download .yml
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