Run update.sh

This commit is contained in:
Docker Library Bot 2017-07-03 10:31:41 -07:00
parent 229822f8c0
commit 08643e9210
4 changed files with 17 additions and 3 deletions

View File

@ -16,7 +16,7 @@ WARNING:
# 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.1`, `1.1.6` (*Dockerfile*)](https://github.com/crate/docker-crate/blob/019830ed59c4b110f8c93f30430d282818ad95ec/Dockerfile)

View File

@ -72,7 +72,7 @@ For more examples and ideas, visit:
$ docker images hello-world
REPOSITORY TAG IMAGE ID SIZE
hello-world latest 1815c82652c0 1.84 kB
hello-world latest 1815c82652c0 1.84kB
```
![logo](https://raw.githubusercontent.com/docker-library/docs/01c12653951b2fe592c1f93a13b4e289ada0e3a1/hello-world/logo.png)

View File

@ -26,7 +26,7 @@ For more examples and ideas, visit:
$ docker images hello-world
REPOSITORY TAG IMAGE ID SIZE
hello-world latest 1815c82652c0 1.84 kB
hello-world latest 1815c82652c0 1.84kB
```
%%LOGO%%

View File

@ -130,6 +130,20 @@ $ docker run -d nextcloud \
-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
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.