You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: .examples/README.md
+8-8
Original file line number
Diff line number
Diff line change
@@ -66,9 +66,9 @@ The following Dockerfile commands are also necessary for a sucessfull cron insta
66
66
67
67
## docker-compose
68
68
In `docker-compose` additional services are bundled to create a complete nextcloud installation. The examples are designed to run out-of-the-box.
69
-
Before running the examples you have to modify the `db.env` and `docker-compose.yml` file and fill in your custom information.
69
+
Before running the examples you have to modify the `db.env` and `compose.yaml` file and fill in your custom information.
70
70
71
-
The docker-compose examples make heavily use of derived 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.
71
+
The dockercompose examples make heavily use of derived Dockerfiles to add configuration files into the containers. This way they should also work on remote docker systems as _Docker for Windows_. When running dockercompose on the same host as the docker daemon, another possibility would be to simply mount the files in the volumes section in the `compose.yaml` file.
72
72
73
73
74
74
### insecure
@@ -78,10 +78,10 @@ For this use one of the [with-nginx-proxy](#with-nginx-proxy) examples.
78
78
79
79
To use this example complete the following steps:
80
80
81
-
1. if you use mariadb or mysql choose a root password for the database in `docker-compose.yml` behind `MYSQL_ROOT_PASSWORD=`
81
+
1. if you use mariadb or mysql choose a root password for the database in `compose.yaml` behind `MYSQL_ROOT_PASSWORD=`
82
82
2. choose a password for the database user nextcloud in `db.env` behind `MYSQL_PASSWORD=` (for mariadb/mysql) or `POSTGRES_PASSWORD=` (for postgres)
83
-
3. run `docker-compose build --pull` to pull the most recent base images and build the custom dockerfiles
84
-
4. start nextcloud with `docker-compose up -d`
83
+
3. run `dockercompose build --pull` to pull the most recent base images and build the custom dockerfiles
84
+
4. start nextcloud with `dockercompose up -d`
85
85
86
86
87
87
If you want to update your installation to a newer version of nextcloud, repeat the steps 3 and 4.
@@ -97,13 +97,13 @@ This combination of the [nginxproxy/nginx-proxy](https://github.com/nginx-proxy/
97
97
98
98
To use this example complete the following steps:
99
99
100
-
1. open `docker-compose.yml`
100
+
1. open `compose.yaml`
101
101
1. insert your nextcloud domain behind `VIRTUAL_HOST=`and `LETSENCRYPT_HOST=`
102
102
2. enter a valid email behind `LETSENCRYPT_EMAIL=`
103
103
3. if you use mariadb or mysql choose a root password for the database behind `MYSQL_ROOT_PASSWORD=`
104
104
2. choose a password for the database user nextcloud in `db.env` behind `MYSQL_PASSWORD=` (for mariadb/mysql) or `POSTGRES_PASSWORD=` (for postgres)
105
-
3. run `docker-compose build --pull` to pull the most recent base images and build the custom dockerfiles
106
-
4. start nextcloud with `docker-compose up -d`
105
+
3. run `dockercompose build --pull` to pull the most recent base images and build the custom dockerfiles
106
+
4. start nextcloud with `dockercompose up -d`
107
107
108
108
109
109
If you want to update your installation to a newer version of nextcloud, repeat the steps 3 and 4.
0 commit comments