@@ -58,33 +58,31 @@ npx @strapi-community/dockerize new --dbclient=mysql --dbhost=localhost --dbport
58
58
Please note the ` new ` keyword is required for this to take effect.
59
59
60
60
``` markdown
61
- npx @strapi-community/dockerize new
62
- --projectname=<projectname>
63
- --dbtype=<dbclient>
61
+ npx @strapi-community/dockerize
62
+ --dbtype=<dbtype>
64
63
--dbhost=<dbhost>
65
64
--dbport=<dbport>
66
65
--dbname=<dbname>
67
- --dbusername=<dbusername >
66
+ --dbuser=<dbuser >
68
67
--dbpassword=<dbpassword>
69
- --projecttype=<projecttype >
68
+ --type=<type >
70
69
--packagemanager=<packagemanager>
71
- --usecompose=<usecompose >
70
+ --useCompose=<useCompose >
72
71
--env=<env>
73
72
```
74
73
75
74
``` markdown
76
75
| 💻 Command | 💬 Value | 🦄 Type | 🐲 Default |
77
76
| -------------- | --------------------------------------- | ------- | ------------- |
78
- | projectname | | String | `mystrapi` |
79
- | dbclient | `postgres` \| `mysql` \| `mariadb` | String | `postgres` |
77
+ | dbtype | `postgres` \| `mysql` \| `mariadb` | String | `postgres` |
80
78
| dbhost | | String | `localhost` |
81
79
| dbport | `5432` \| `3306` | Number | `5432` |
82
80
| dbname | | String | `strapi` |
83
- | dbusername | | String | `strapi` |
84
- | dbpassword | | String | |
85
- | projecttype | `ts` \| `js` | String | `js` |
81
+ | dbuser | | String | `strapi` |
82
+ | dbpassword | | String | `strapi` |
83
+ | type | `ts` \| `js` | String | `js` |
86
84
| packagemanager | `yarn` \| `npm` | String | `yarn` |
87
- | usecompose | `true` \| `false` | Boolean | `false` |
85
+ | useCompose | `true` \| `false` | Boolean | `false` |
88
86
| env | `development` \| `production` \| `both` | String | `development` |
89
87
```
90
88
0 commit comments