Zend certified PHP/Magento developer

how to add a block that only shows on home page

I have created a block within my new theme, but it is showing on all pages, I need it to only show on the home page and when logging in or going to another page it does not show

create it inside default.xml

<container name="copyright.container" as="copyContainer" label="Copyright Container" htmlTag="div" htmlClass="copyright-container">
        <block class="MagentoFrameworkViewElementTemplate" name="copyright__container" template="Magento_Cms::copy.phtml" />
</container>

on mi file .phtml

<div class="copy">
<span>
    <?php $Object = new DateTime();
        $anio = $Object->format("Y"); 
        echo "Copyright © $anio Agriconecta"; ?>  
</span>

I need it to only show on the home page and not on the other pages,