Skip to content

Commit 5aaccf2

Browse files
committed
- docker argument to create app was supposed to be false by default, not true
1 parent c30ed23 commit 5aaccf2

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ 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+
1216
### Fixed
1317

1418
- Docker ignore issues

commands/coldbox/create/app.cfc

Lines changed: 1 addition & 1 deletion
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

0 commit comments

Comments
 (0)