docker-compose - CI/CD Glossary Definition
docker-compose (now docker compose) declares a multi-container app in one YAML file and starts all its services, networks, and volumes together.
Related guides
Dockerfile - CI/CD Glossary DefinitionA Dockerfile is the text recipe of instructions - FROM, RUN, COPY, CMD - that Docker executes to build a cont…
Service Container - CI/CD Glossary DefinitionService Container: A **service container** is a Docker container (e.g. Postgres, Redis) GitHub Actions runs a…
Integration Test - CI/CD Glossary DefinitionAn integration test verifies that multiple components - code plus a database, queue, or API - work correctly…