Anleitung zum Starten, Stoppen, Aktualisieren und Sichern der Anwendung

This commit is contained in:
bmen 2019-09-14 19:23:18 +00:00
parent d574e82614
commit 5dbde9d917
1 changed files with 28 additions and 1 deletions

View File

@ -1,3 +1,30 @@
# Docker Nextcloud mit Mariadb und fpm
https://github.com/nextcloud/docker
Anleitung: https://github.com/nextcloud/docker
## Anwendung bedienen
Nextcloud starten
```
cd /path/to/deploy/folder
docker-compose up -d
```
Nextcloud stoppen
```
docker-compose down
```
Nextcloud aktualisieren
```
docker-compose down
docker-compose pull
docker-compose up -d
```
## Datenbank
MySQL import
```
docker exec -i nextcloud-db mysql -uroot -pnextcloud nextcloud < SQLFILE.sql
```
MySQL Dump
```
mysqldump -u root -pnextcloud nextcloud > SQLFILE.sql
```