Skip to content

Commit d012e2a

Browse files
committed
Merge branch 'development'
2 parents 5b7c8cd + 5aaccf2 commit d012e2a

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

box.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name":"ColdBox CLI",
3-
"version":"8.0.0",
3+
"version":"8.1.0",
44
"location":"https://downloads.ortussolutions.com/ortussolutions/commandbox-modules/coldbox-cli/@build.version@/[email protected]@.zip",
55
"slug":"coldbox-cli",
66
"author":"Ortus Solutions, Corp",

changelog.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## [Unreleased]
1111

12+
### Changed
13+
14+
- `docker` argument to create app was supposed to be `false` by default, not `true`
15+
16+
### Fixed
17+
18+
- Docker ignore issues
19+
- App env sample ignore issues
20+
1221
## [8.0.0] - 2025-10-13
1322

1423
## [7.10.0] - 2025-10-10

commands/coldbox/create/app.cfc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ component extends="coldbox-cli.models.BaseCommand" {
8787
boolean verbose = false,
8888
boolean migrations = false,
8989
boolean boxlang = true,
90-
boolean docker = true,
90+
boolean docker = false,
9191
boolean vite = false,
9292
boolean rest = false,
9393
boolean cfml = false
@@ -195,7 +195,7 @@ component extends="coldbox-cli.models.BaseCommand" {
195195
);
196196
} else {
197197
fileCopy(
198-
variables.settings.templatesPath & ".env.example",
198+
variables.settings.templatesPath & "env.example",
199199
envFile
200200
);
201201
}
@@ -258,7 +258,7 @@ component extends="coldbox-cli.models.BaseCommand" {
258258
arguments.directory & "docker/docker-compose.yml"
259259
)
260260
fileCopy(
261-
"#variables.settings.templatesPath#/docker/.dockerignore",
261+
"#variables.settings.templatesPath#/docker/dockerignore",
262262
arguments.directory & "docker/.dockerignore"
263263
)
264264

0 commit comments

Comments
 (0)