Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/deploystack/deploystack-configuration-directory.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
```

Expand Down Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion docs/deploystack/docker-compose-requirements.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/deploystack/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
```

Expand Down
Loading