Run update.sh
This commit is contained in:
parent
229822f8c0
commit
08643e9210
|
|
@ -16,7 +16,7 @@ WARNING:
|
||||||
|
|
||||||
# Supported tags and respective `Dockerfile` links
|
# Supported tags and respective `Dockerfile` links
|
||||||
|
|
||||||
- [`latest`, `2.0`, `2.0.2` (*Dockerfile*)](https://github.com/crate/docker-crate/blob/4933ff67f269a90997bac5f7391b1f97da4204c5/Dockerfile)
|
- [`latest`, `2.0`, `2.0.3` (*Dockerfile*)](https://github.com/crate/docker-crate/blob/1081a1565040c4a182876bed90ae1230e4049b16/Dockerfile)
|
||||||
- [`1.0`, `1.0.6` (*Dockerfile*)](https://github.com/crate/docker-crate/blob/89e1557944b257c9e56b0e93a458eb6f0238ece3/Dockerfile)
|
- [`1.0`, `1.0.6` (*Dockerfile*)](https://github.com/crate/docker-crate/blob/89e1557944b257c9e56b0e93a458eb6f0238ece3/Dockerfile)
|
||||||
- [`1.1`, `1.1.6` (*Dockerfile*)](https://github.com/crate/docker-crate/blob/019830ed59c4b110f8c93f30430d282818ad95ec/Dockerfile)
|
- [`1.1`, `1.1.6` (*Dockerfile*)](https://github.com/crate/docker-crate/blob/019830ed59c4b110f8c93f30430d282818ad95ec/Dockerfile)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -130,6 +130,20 @@ $ docker run -d nextcloud \
|
||||||
-v theme:/var/www/html/themes/<YOUR_CUSTOM_THEME>
|
-v theme:/var/www/html/themes/<YOUR_CUSTOM_THEME>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Using the Nextcloud command-line interface
|
||||||
|
|
||||||
|
To use the [Nextcloud command-line interface](https://docs.nextcloud.com/server/12/admin_manual/configuration_server/occ_command.html) (aka. `occ` command):
|
||||||
|
|
||||||
|
```console
|
||||||
|
$ docker exec --user www-data CONTAINER_ID php occ
|
||||||
|
```
|
||||||
|
|
||||||
|
or for docker-compose:
|
||||||
|
|
||||||
|
```console
|
||||||
|
$ docker-compose exec --user www-data app php occ
|
||||||
|
```
|
||||||
|
|
||||||
# Running this image with docker-compose
|
# Running this image with docker-compose
|
||||||
|
|
||||||
The easiest way to get a fully featured and functional setup is using a `docker-compose` file. There are too many different possibilities to setup your system, so here are only some examples what you have to look for.
|
The easiest way to get a fully featured and functional setup is using a `docker-compose` file. There are too many different possibilities to setup your system, so here are only some examples what you have to look for.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue