Skip to content

Commit c1faa06

Browse files
committed
update examples to 1.6.0
1 parent 33e106f commit c1faa06

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ Documentation for each subcommand:
2525
Using Docker links to `mariadb` container:
2626

2727
```
28-
docker run --rm -i -t --link myserver:mariadb docker.io/panubo/mariadb-toolbox:1.5.0
28+
docker run --rm -i -t --link myserver:mariadb docker.io/panubo/mariadb-toolbox:1.6.0
2929
```
3030

3131
This will display the usage information.
3232

3333
```
34-
docker run --rm -i -t --link myserver:mariadb docker.io/panubo/mariadb-toolbox:1.5.0 <subcommand>
34+
docker run --rm -i -t --link myserver:mariadb docker.io/panubo/mariadb-toolbox:1.6.0 <subcommand>
3535
```
3636

3737
To run the subcommand.

commands/backup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ Or alternatively specify the individual variables:
2424
## Example
2525

2626
```
27-
docker run --rm -t -i --link myserver:mariadb -e BACKUP_DIR=/data -v /mnt/backup:/data docker.io/panubo/mariadb-toolbox:1.5.0 backup db1 db2
27+
docker run --rm -t -i --link myserver:mariadb -e BACKUP_DIR=/data -v /mnt/backup:/data docker.io/panubo/mariadb-toolbox:1.6.0 backup db1 db2
2828
```

commands/check.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ Alternatively specify the individual variables:
2020
## Usage Example
2121

2222
```
23-
docker run --rm -i -t -e DATABASE_HOST=172.19.66.4 -e DATABASE_USER=root -e DATABASE_PASS=foo docker.io/panubo/mariadb-toolbox:1.5.0 check
23+
docker run --rm -i -t -e DATABASE_HOST=172.19.66.4 -e DATABASE_USER=root -e DATABASE_PASS=foo docker.io/panubo/mariadb-toolbox:1.6.0 check
2424
```

commands/convert-to-innodb.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ Alternatively specify the individual variables:
2020
## Usage Example
2121

2222
```
23-
docker run --rm -i -t -e DATABASE_HOST=172.19.66.4 -e DATABASE_USER=root -e DATABASE_PASS=foo docker.io/panubo/mariadb-toolbox:1.5.0 convert-to-innodb <database>
23+
docker run --rm -i -t -e DATABASE_HOST=172.19.66.4 -e DATABASE_USER=root -e DATABASE_PASS=foo docker.io/panubo/mariadb-toolbox:1.6.0 convert-to-innodb <database>
2424
```

commands/copy-database.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ Alternatively specify the individual variables:
2121
## Usage Example
2222

2323
```
24-
docker run --rm -i -t -v /mnt/data00/migrations:/data -e DATABASE_HOST=172.19.66.4 -e DATABASE_USER=root -e DATABASE_PASS=foo docker.io/panubo/mariadb-toolbox:1.5.0 copy-database <source-db> <destination-db>
24+
docker run --rm -i -t -v /mnt/data00/migrations:/data -e DATABASE_HOST=172.19.66.4 -e DATABASE_USER=root -e DATABASE_PASS=foo docker.io/panubo/mariadb-toolbox:1.6.0 copy-database <source-db> <destination-db>
2525
```

commands/create-user-db.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ Or alternatively specify the individual variables:
2424
Create `foo` user with full privileges to a database with the same name:
2525

2626
```
27-
docker run --rm -i -t -e DATABASE_HOST=172.19.66.4 -e DATABASE_USER=root -e DATABASE_PASS=foo docker.io/panubo/mariadb-toolbox:1.5.0 create-user-db foo foopass
27+
docker run --rm -i -t -e DATABASE_HOST=172.19.66.4 -e DATABASE_USER=root -e DATABASE_PASS=foo docker.io/panubo/mariadb-toolbox:1.6.0 create-user-db foo foopass
2828
```
2929

3030
Using Docker links to `mariadb` container:
3131

3232
```
33-
docker run --rm -i -t --link myserver:mariadb docker.io/panubo/mariadb-toolbox:1.5.0 create-user-db foo foopass
33+
docker run --rm -i -t --link myserver:mariadb docker.io/panubo/mariadb-toolbox:1.6.0 create-user-db foo foopass
3434
```

commands/import.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ This means the database will be created with a name that is derived from the imp
2424
## Usage Example
2525

2626
```
27-
docker run --rm -i -t -v /mnt/data00/migrations:/data -e DATABASE_HOST=172.19.66.4 -e DATABASE_USER=root -e DATABASE_PASS=foo docker.io/panubo/mariadb-toolbox:1.5.0 import
27+
docker run --rm -i -t -v /mnt/data00/migrations:/data -e DATABASE_HOST=172.19.66.4 -e DATABASE_USER=root -e DATABASE_PASS=foo docker.io/panubo/mariadb-toolbox:1.6.0 import
2828
```

commands/mysql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ Alternatively specify the individual variables:
1616
## Usage Example
1717

1818
```
19-
docker run --rm -i -t -e DATABASE_HOST=172.19.66.4 -e DATABASE_USER=root -e DATABASE_PASS=foo docker.io/panubo/mariadb-toolbox:1.5.0 mysql
19+
docker run --rm -i -t -e DATABASE_HOST=172.19.66.4 -e DATABASE_USER=root -e DATABASE_PASS=foo docker.io/panubo/mariadb-toolbox:1.6.0 mysql
2020
```

0 commit comments

Comments
 (0)