docs/content/manuals/projects/faq.md

22 lines
770 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Docker Projects FAQs
linkTitle: FAQs
description: Find common FAQs for Docker Projects
keywords: faqs, docker projects, local, remote
weight: 70
---
## Why is a Compose file required?
A Compose file (`compose.yml`) defines how your application's containers should run together, including:
- Services (e.g., web, database, API)
- Networks for inter-container communication
- Volumes for persistent data storage
- Environment variables and configurations
Without a Compose file, Docker Projects doesn't have a way to understand how your application should be structured or executed.
## What if my project doesnt have a Compose file?
If your project doesn't include a `compose.yml` file, you need to create one before opening it in Docker Projects.