defang 2.1.12 → 2.1.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -22,7 +22,10 @@ The Defang Command-Line Interface [(CLI)](https://docs.defang.io/docs/getting-st
|
|
|
22
22
|
|
|
23
23
|
The Defang CLI recognizes the following environment variables:
|
|
24
24
|
|
|
25
|
-
- `
|
|
25
|
+
- `COMPOSE_DISABLE_ENV_FILE` - Whether to disable loading environment variables from a `.env` file in the current directory; defaults to `false`
|
|
26
|
+
- `COMPOSE_FILE` - The Compose file(s) to use; defaults to `compose.yaml`, `compose.yml`, `docker-compose.yaml`, or `docker-compose.yml` in the current directory
|
|
27
|
+
- `COMPOSE_PATH_SEPARATOR` - The path separator to use for `COMPOSE_FILE`; defaults to `:` on Unix/MacOS and `;` on Windows
|
|
28
|
+
- `COMPOSE_PROJECT_NAME` - The name of the project to use; overrides the `name` in the Compose file
|
|
26
29
|
- `DEFANG_ACCESS_TOKEN` - The access token to use for authentication; if not specified, uses token from `defang login`
|
|
27
30
|
- `DEFANG_BUILD_CONTEXT_LIMIT` - The maximum size of the build context when building container images; defaults to `100MiB`
|
|
28
31
|
- `DEFANG_CD_BUCKET` - The S3 bucket to use for the BYOC CD pipeline; defaults to `defang-cd-bucket-…`
|
package/package.json
CHANGED