File tree Expand file tree Collapse file tree 5 files changed +13
-4
lines changed
Expand file tree Collapse file tree 5 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments