Skip to content

Commit d84ef72

Browse files
authored
Rename devops-toolkit to devops-toolkit-cli (#211)
1 parent 07574ee commit d84ef72

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,39 +29,39 @@ Use the provided execution script simplifies setup, execution and managing DevOp
2929
### 1. Install
3030

3131
```bash
32-
curl -o devops-toolkit https://raw.githubusercontent.com/tungbq/devops-toolkit/main/devops-toolkit
33-
chmod +x devops-toolkit
34-
sudo mv devops-toolkit /usr/local/bin/
32+
curl -o devops-toolkit-cli https://raw.githubusercontent.com/tungbq/devops-toolkit/main/devops-toolkit-cli
33+
chmod +x devops-toolkit-cli
34+
sudo mv devops-toolkit-cli /usr/local/bin/
3535
```
3636

3737
### 2. Run
3838

3939
- Initialize the docker image, container and configuration directory:
4040

4141
```bash
42-
devops-toolkit init
43-
# Run 'devops-toolkit init vX.Y.Z' if you want to use specific version. E.g: devops-toolkit init 1.0.2
42+
devops-toolkit-cli init
43+
# Run 'devops-toolkit-cli init vX.Y.Z' if you want to use specific version. E.g: devops-toolkit-cli init 1.0.2
4444
```
4545

4646
- Start a shell in new container:
4747

4848
```bash
49-
devops-toolkit run
49+
devops-toolkit-cli run
5050
```
5151

5252
- Execute a command in the container:
5353

5454
```bash
55-
devops-toolkit run ls -la
55+
devops-toolkit-cli run ls -la
5656
```
5757

5858
- Access the shell:
5959

6060
```bash
61-
devops-toolkit shell
61+
devops-toolkit-cli shell
6262
```
6363

64-
- For more commands, use `devops-toolkit help`.
64+
- For more commands, use `devops-toolkit-cli help`.
6565

6666
## Use DevOps Toolkit with docker command directly
6767

devops-toolkit renamed to devops-toolkit-cli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ init() {
207207

208208
if docker inspect --type=container "$CONTAINER_NAME" > /dev/null 2>&1; then
209209
log $YELLOW "Container $CONTAINER_NAME already exists. Skipping initialization."
210-
log $YELLOW "Run 'devops-toolkit cleanup' then init again if you want to re-init!"
210+
log $YELLOW "Run 'devops-toolkit-cli cleanup' then init again if you want to re-init!"
211211
else
212212
log $BLUE "Initializing container with image $image..."
213213
pull_image "$image"

0 commit comments

Comments
 (0)