Fix mysql import in nextcloud readme (#2210)

This commit is contained in:
TheDevPanda 2022-10-05 23:32:01 +02:00 committed by GitHub
parent 19fa7bb3ad
commit 0175897b0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -496,7 +496,7 @@ You're already using Nextcloud and want to switch to docker? Great! Here are som
```console
docker cp ./database.dmp nextcloud_db_1:/dmp
docker-compose exec db sh -c "mysql -u USER -p PASSWORD nextcloud < /dmp"
docker-compose exec db sh -c "mysql --user USER --password PASSWORD nextcloud < /dmp"
docker-compose exec db rm /dmp
```