diff --git a/docs/deploystack/deploystack-configuration-directory.md b/docs/deploystack/deploystack-configuration-directory.md index 25fbf14..14eeb28 100644 --- a/docs/deploystack/deploystack-configuration-directory.md +++ b/docs/deploystack/deploystack-configuration-directory.md @@ -16,7 +16,7 @@ The `.deploystack` directory in your repository contains configuration files tha .deploystack/ ├── docker-compose.yml # Docker Compose configuration ├── docker-run.txt # Docker run command -├── .env # Environment variables (optional) +├── env # Environment variables (optional) └── logo.webp # Project / app logo (optional) ``` @@ -48,11 +48,11 @@ docker run -d -p 80:80 nginx:alpine ### Environment Variables -- File: `.env` (optional) +- File: `env` (optional) - Used with both Docker Compose and Docker run configurations - Contains key-value pairs for environment variables -Example `.env`: +Example `env`: ```bash DB_USER=admin diff --git a/docs/deploystack/docker-compose-requirements.md b/docs/deploystack/docker-compose-requirements.md index 6202909..3f289ab 100644 --- a/docs/deploystack/docker-compose-requirements.md +++ b/docs/deploystack/docker-compose-requirements.md @@ -76,7 +76,6 @@ Currently, DeployStack only supports public images from Docker Hub. If you need A few notes about environment variables: - We support environment variables defined in your docker-compose.yml -- We do not process .env files - Sensitive information should not be included in the docker-compose.yml ## Validation diff --git a/docs/deploystack/getting-started.md b/docs/deploystack/getting-started.md index a1ad9eb..f1b1739 100644 --- a/docs/deploystack/getting-started.md +++ b/docs/deploystack/getting-started.md @@ -86,7 +86,7 @@ Create a `.deploystack` directory in your repository with these components: .deploystack/ ├── docker-compose.yml # Your Docker Compose configuration ├── docker-run.txt # Or your Docker run command -├── .env # Environment variables (optional) +├── env # Environment variables (optional) └── logo.webp # Your project logo (optional) ```