Skip to content

Commit c310d90

Browse files
committed
Update references from bear-node-docker to acrool-node-docker-cli
Replaced all occurrences of `bear-node-docker` with `acrool-node-docker-cli` in the README. This includes changes to commands, paths, and script examples for consistency with the updated package name.
1 parent 1923f3b commit c310d90

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ yarn add -D @acrool/node-docker-cli
3131
## Setting
3232

3333
```bash
34-
$ cp ./node_modules/bear-node-docker/config/nginx ./deploy/nginx
34+
$ cp ./node_modules/@acrool/node-docker-cli/config/nginx ./deploy/nginx
3535
```
3636

3737
in your package.json
3838
```json
3939
{
4040
"dockerRegistry": "docker.io/imagine10255",
4141
"scripts": {
42-
"docker:build": "acrool-node-docker-cli docker --dockerfile=./node_modules/bear-node-docker/config/dockerfile/react/Dockerfile",
42+
"docker:build": "acrool-node-docker-cli build --dockerfile=./node_modules/@acrool/node-docker-cli/config/dockerfile/react/Dockerfile",
4343
"docker:push": "acrool-node-docker-cli push"
4444
}
4545
}
@@ -52,17 +52,17 @@ imagine10255 is your dockerhub account, your can change your dockerhub account
5252
### [Options] Custom dockerfile in root type command
5353
```bash
5454
# react
55-
$ cp ./node_modules/bear-node-docker/config/dockerfile/react/Dockerfile ./
55+
$ cp ./node_modules/@acrool/node-docker-cli/config/dockerfile/react/Dockerfile ./
5656

5757
# nest
58-
$ cp ./node_modules/bear-node-docker/config/dockerfile/nest/Dockerfile ./
58+
$ cp ./node_modules/@acrool/node-docker-cli/config/dockerfile/nest/Dockerfile ./
5959
```
6060

6161
package.json
6262
```json
6363
{
6464
"scripts": {
65-
"docker:build": "bear-node-docker build --dockerfile=./Dockerfile"
65+
"docker:build": "acrool-node-docker-cli build --dockerfile=./Dockerfile"
6666
}
6767
}
6868
```
@@ -87,7 +87,7 @@ package.json
8787
```json
8888
{
8989
"scripts": {
90-
"docker:build": "bear-node-docker build --publicUrl=/recommend --dockerfile=./Dockerfile"
90+
"docker:build": "acrool-node-docker-cli build --publicUrl=/recommend --dockerfile=./Dockerfile"
9191
}
9292
}
9393
```
@@ -116,7 +116,7 @@ package.json
116116
{
117117
"scripts": {
118118
"build": "react-scripts build",
119-
"docker:build": "yarn build && bear-node-docker build --publicUrl=/recommend --dockerfile=./Dockerfile"
119+
"docker:build": "yarn build && acrool-node-docker-cli build --publicUrl=/recommend --dockerfile=./Dockerfile"
120120
}
121121
}
122122
```

0 commit comments

Comments
 (0)