defang 3.11.1 → 3.12.0
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 +1 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -23,6 +23,7 @@ The Defang Command-Line Interface [(CLI)](https://docs.defang.io/docs/getting-st
|
|
|
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_ENV_FILES` - A comma-separated list of environment file(s) to use for interpolation instead of `.env`; overridden by the `--env-file` flag
|
|
26
27
|
- `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
28
|
- `COMPOSE_PATH_SEPARATOR` - The path separator to use for `COMPOSE_FILE`; defaults to `:` on Unix/MacOS and `;` on Windows
|
|
28
29
|
- `COMPOSE_PROJECT_NAME` - The name of the project to use; overrides the `name` in the Compose file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "defang",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.12.0",
|
|
4
4
|
"author": "Defang Software Labs Inc.",
|
|
5
5
|
"description": "CLI to take your app from Docker Compose to a secure and scalable deployment on your favorite cloud in minutes",
|
|
6
6
|
"license": "MIT",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"test": "tsx --tsconfig tsconfig.test.json mocha.ts"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"adm-zip": "^0.
|
|
29
|
+
"adm-zip": "^0.6.0",
|
|
30
30
|
"tar": "^7.0.1"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|