mirror of
https://github.com/nextcloud/docker.git
synced 2024-11-05 22:04:58 +01:00
Update README.md
Updated description of the image.
This commit is contained in:
parent
0c746730ae
commit
fae7c1ee5e
1 changed files with 7 additions and 3 deletions
10
README.md
10
README.md
|
@ -5,6 +5,7 @@ A safe home for all your data. Access & share your files, calendars, contacts, m
|
||||||
![logo](https://github.com/nextcloud/docker/blob/master/logo.png)
|
![logo](https://github.com/nextcloud/docker/blob/master/logo.png)
|
||||||
|
|
||||||
# How to use this image
|
# How to use this image
|
||||||
|
This image is designed to be used in a micro-service environment. It consists of the Nextcloud installation in an [php-fpm](https://hub.docker.com/_/php/) container. To use this image it must be combined with any webserver that can proxy the http requests to the FastCGI-port of the container.
|
||||||
|
|
||||||
## Start Nextcloud
|
## Start Nextcloud
|
||||||
|
|
||||||
|
@ -14,9 +15,9 @@ Starting Nextcloud php-fpm instance listening on port 9000 is as easy as the fol
|
||||||
$ docker run -d nextcloud
|
$ docker run -d nextcloud
|
||||||
```
|
```
|
||||||
|
|
||||||
Now you can get access to fpm running on port 9000 inside the container. If you want to access it from the Internets, we recommend using a reverse proxy in front. You can find more information on that on the docker-compose section. Once you have a reverse proxy, go to http://localhost/ and go through the wizard. By default this container uses SQLite for data storage, but the wizard should allow for connecting to an existing database.
|
Now you can get access to fpm running on port 9000 inside the container. If you want to access it from the internet, we recommend using a reverse proxy in front. You can install it directly on your machine or use an additional container (You can find more information on that on the docker-compose section). Once you have a reverse proxy, you can access Nextcloud at http://localhost/ and go through the wizard.
|
||||||
|
|
||||||
For a MySQL database you can link an database container, e.g. `--link my-mysql:mysql`, and then use `mysql` as the database host on setup.
|
By default this container uses SQLite for data storage, but the wizard allows connecting to an existing database. For a MySQL database you can link an database container, e.g. `--link my-mysql:mysql`, and then use `mysql` as the database host on setup.
|
||||||
|
|
||||||
## Persistent data
|
## Persistent data
|
||||||
|
|
||||||
|
@ -32,4 +33,7 @@ For fine grained data persistence, you can use 3 volumes, as shown below.
|
||||||
|
|
||||||
## ... via [`docker-compose`](https://github.com/docker/compose)
|
## ... via [`docker-compose`](https://github.com/docker/compose)
|
||||||
|
|
||||||
You can use a setup that is used in production at [IndieHosters/Nextcloud](https://github.com/indiehosters/nextcloud).
|
The recommended minimal setup is using this image in combination with two containers: A database container and a reverse proxy for the http connection to the service.
|
||||||
|
A working example can be found at [IndieHosters/Nextcloud](https://github.com/indiehosters/nextcloud).
|
||||||
|
|
||||||
|
If you want to access your Nextcloud from the internet we recommend configuring your reverse proxy to use encryption (for example via [let's Encrypt](https://letsencrypt.org/))
|
||||||
|
|
Loading…
Reference in a new issue