Skip to content

Commit

Permalink
Run update.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
docker-library-bot committed May 30, 2019
1 parent 0677597 commit 51ec4b0
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
8 changes: 8 additions & 0 deletions mariadb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,14 @@ Most of the normal tools will work, although their usage might be a little convo
$ docker exec some-mariadb sh -c 'exec mysqldump --all-databases -uroot -p"$MYSQL_ROOT_PASSWORD"' > /some/path/on/your/host/all-databases.sql
```

## Restoring data from dump files

For restoring data. You can use `docker exec` command with `-i` flag, similar to the following:

```console
$ docker exec -i some-mariadb sh -c 'exec mysql -uroot -p"$MYSQL_ROOT_PASSWORD"' < /some/path/on/your/host/all-databases.sql
```

# License

View [license information](https://mariadb.com/kb/en/library/licensing-faq/) for the software contained in this image.
Expand Down
8 changes: 8 additions & 0 deletions mysql/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,14 @@ Most of the normal tools will work, although their usage might be a little convo
$ docker exec some-mysql sh -c 'exec mysqldump --all-databases -uroot -p"$MYSQL_ROOT_PASSWORD"' > /some/path/on/your/host/all-databases.sql
```

## Restoring data from dump files

For restoring data. You can use `docker exec` command with `-i` flag, similar to the following:

```console
$ docker exec -i some-mysql sh -c 'exec mysql -uroot -p"$MYSQL_ROOT_PASSWORD"' < /some/path/on/your/host/all-databases.sql
```

# License

View [license information](https://www.mysql.com/about/legal/) for the software contained in this image.
Expand Down
8 changes: 8 additions & 0 deletions percona/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,14 @@ Most of the normal tools will work, although their usage might be a little convo
$ docker exec some-percona sh -c 'exec mysqldump --all-databases -uroot -p"$MYSQL_ROOT_PASSWORD"' > /some/path/on/your/host/all-databases.sql
```

## Restoring data from dump files

For restoring data. You can use `docker exec` command with `-i` flag, similar to the following:

```console
$ docker exec -i some-percona sh -c 'exec mysql -uroot -p"$MYSQL_ROOT_PASSWORD"' < /some/path/on/your/host/all-databases.sql
```

# License

View [license information](https://www.percona.com/doc/percona-server/LATEST/copyright.html) for the software contained in this image.
Expand Down

0 comments on commit 51ec4b0

Please sign in to comment.