additions

This commit is contained in:
Marc Brückner 2017-08-16 23:24:14 +02:00 committed by Tilo Spannagel
parent e3e9b8f0e9
commit 72c22b1a83
No known key found for this signature in database
GPG Key ID: B89F1626A58E1429

View File

@ -25,6 +25,8 @@ Example | Description
In `docker-compose` additional services are bundled to create a complete nextcloud installation. The examples are designed to run out-of-the-box.
Before running the examples you have to modify the `db.env` and `docker-compose.yml` file and fill in your custom information.
The docker-compose examples make heavily use of dereived Dockerfiles to add configuration files into the containers. This way they should also work on remote docker systems as _Docker for Windows_. When running docker-compose on the same host as the docker daemon, another possibility would be to simply mount the files in the volumes section in the `docker-compose.yml` file.
**TODO: ADD INSECURE DESCRIPTION**
@ -36,12 +38,12 @@ This combination of the [jwilder/nginx-proxy](https://github.com/jwilder/nginx-p
To use this example complete the following steps:
1. open docker-compose.yml
1. open `docker-compose.yml`
1. insert your nextcloud domain behind `VIRTUAL_HOST=`and `LETSENCRYPT_HOST=`
2. enter a valid email behind `LETSENCRYPT_EMAIL`
3. choose a root password for the database behin `MYSQL_ROOT_PASSWORD=`
2. enter a valid email behind `LETSENCRYPT_EMAIL=`
3. choose a root password for the database behind `MYSQL_ROOT_PASSWORD=`
4. enter your collabora domain behind `domain=`
2. choose a password for the database user nextcloud in `db.env`behind `MYSQL_PASSWORD`
2. choose a password for the database user nextcloud in `db.env` behind `MYSQL_PASSWORD=`
3. run `docker-compose build --pull` to pull the most recent base images and build the custom dockerfiles
4. start nextcloud with `docker-compose up -d`