mirror of
https://github.com/nextcloud/docker.git
synced 2025-04-06 04:36:09 +02:00
Merge pull request #1383 from Schroedingers-Cat/clearer-migration
Clearer migration documentation
This commit is contained in:
commit
8b9ca85ac5
1 changed files with 56 additions and 54 deletions
30
README.md
30
README.md
|
@ -517,22 +517,24 @@ You're already using Nextcloud and want to switch to docker? Great! Here are som
|
||||||
```php
|
```php
|
||||||
'datadirectory' => '/var/www/html/data',
|
'datadirectory' => '/var/www/html/data',
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
4. Copy your data (nextcloud_app_1 is the name of your Nextcloud container):
|
4. Copy your data (nextcloud_app_1 is the name of your Nextcloud container):
|
||||||
```console
|
```console
|
||||||
docker cp ./data/ nextcloud_app_1:/var/www/html/
|
docker cp ./data/ nextcloud_app_1:/var/www/html/
|
||||||
docker-compose exec app chown -R www-data:www-data /var/www/html/data
|
docker-compose exec app chown -R www-data:www-data /var/www/html/data
|
||||||
docker cp ./theming/ nextcloud_app_1:/var/www/html/
|
docker cp ./theming/ nextcloud_app_1:/var/www/html/
|
||||||
docker-compose exec app chown -R www-data:www-data /var/www/html/theming
|
docker-compose exec app chown -R www-data:www-data /var/www/html/theming
|
||||||
docker cp ./config/config.php nextcloud_app_1:/var/www/html/config
|
docker cp ./config/config.php nextcloud_app_1:/var/www/html/config
|
||||||
docker-compose exec app chown -R www-data:www-data /var/www/html/config
|
docker-compose exec app chown -R www-data:www-data /var/www/html/config
|
||||||
```
|
```
|
||||||
|
If you want to preserve the metadata of your files like timestamps, copy the data directly on the host to the named volume using plain `cp` like this:
|
||||||
|
```console
|
||||||
|
cp --preserve --recursive ./data/ /path/to/nextcloudVolume/data
|
||||||
|
```
|
||||||
5. Copy only the custom apps you use (or simply redownload them from the web interface):
|
5. Copy only the custom apps you use (or simply redownload them from the web interface):
|
||||||
```console
|
```console
|
||||||
docker cp ./custom_apps/ nextcloud_data:/var/www/html/
|
docker cp ./custom_apps/ nextcloud_data:/var/www/html/
|
||||||
docker-compose exec app chown -R www-data:www-data /var/www/html/custom_apps
|
docker-compose exec app chown -R www-data:www-data /var/www/html/custom_apps
|
||||||
```
|
```
|
||||||
|
|
||||||
# Questions / Issues
|
# Questions / Issues
|
||||||
If you got any questions or problems using the image, please visit our [Github Repository](https://github.com/nextcloud/docker) and write an issue.
|
If you got any questions or problems using the image, please visit our [Github Repository](https://github.com/nextcloud/docker) and write an issue.
|
||||||
|
|
Loading…
Add table
Reference in a new issue