Examples/Example_Config.ps1

Configuration dockerConfig
{
    Import-DscResource -module cDscDocker

    Node localhost{

        LocalConfigurationManager
        {
            RebootNodeIfNeeded = $true
        }

        cDscDocker ExampleA
        {
        docker = "docker"
        Ensure = 'Present'

        }
    }
}

dockerConfig