diff --git a/.examples/README.md b/.examples/README.md index 0f861e83..4dff0e31 100644 --- a/.examples/README.md +++ b/.examples/README.md @@ -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`