Which of the following is the correct way to define a sidecar container in a Docker Compose file?
ADefine multiple services in the same <code>docker-compose.yml</code> file, where one service is the main app and another is the sidecar
BUse the <code>depends_on</code> key to run containers sequentially
CRun two containers with the same image name in separate Compose files
DUse <code>docker run --sidecar</code> command to start a sidecar container