We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
docker
false
true
1 parent c30ed23 commit 5aaccf2Copy full SHA for 5aaccf2
changelog.md
@@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
10
## [Unreleased]
11
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
commands/coldbox/create/app.cfc
@@ -87,7 +87,7 @@ component extends="coldbox-cli.models.BaseCommand" {
87
boolean verbose = false,
88
boolean migrations = false,
89
boolean boxlang = true,
90
- boolean docker = true,
+ boolean docker = false,
91
boolean vite = false,
92
boolean rest = false,
93
boolean cfml = false
0 commit comments