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: monica/README.md
+12-12Lines changed: 12 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -111,11 +111,11 @@ where `monica` is the name of the service in your `docker-compose.yml` file.
111
111
112
112
## Configuration using environment variables
113
113
114
-
The Monica image will use environment variables to setup the application. See [Monica documentation](https://github.com/monicahq/monica/blob/main/.env.example) for common used variables you should setup.
114
+
The Monica image will use environment variables to setup the application. See [Monica documentation](https://github.com/monicahq/monica/blob/4.x/.env.example) for common used variables you should setup.
115
115
116
116
## Running the image with docker-compose
117
117
118
-
See some examples of docker-compose possibilities in the [example section](https://github.com/monicahq/docker/blob/master/.examples).
118
+
See some examples of docker-compose possibilities in the [example section](https://github.com/monicahq/docker/blob/main/.examples).
119
119
120
120
---
121
121
@@ -128,7 +128,7 @@ Make sure to pass in values for `APP_KEY` variable before you run this setup.
128
128
1. Create a `docker-compose.yml` file
129
129
130
130
```yaml
131
-
version: "3.4"
131
+
version: "3.9"
132
132
133
133
services:
134
134
app:
@@ -138,7 +138,7 @@ Make sure to pass in values for `APP_KEY` variable before you run this setup.
@@ -147,7 +147,7 @@ Make sure to pass in values for `APP_KEY` variable before you run this setup.
147
147
restart: always
148
148
149
149
db:
150
-
image: mysql:5.7
150
+
image: mariadb:11
151
151
environment:
152
152
- MYSQL_RANDOM_ROOT_PASSWORD=true
153
153
- MYSQL_DATABASE=monica
@@ -184,28 +184,28 @@ Make sure to pass in values for `APP_KEY` variable before you run this setup.
184
184
185
185
When using FPM image, you will need another container with a webserver to proxy http requests. In this example we use nginx with a basic container to do this.
186
186
187
-
1. Download `nginx.conf` and `Dockerfile` file for nginx image. An example can be found on the [`example section`](https://github.com/monicahq/docker/blob/master/.examples/supervisor/fpm/web/)
187
+
1. Download `nginx.conf` and `Dockerfile` file for nginx image. An example can be found on the [`example section`](https://github.com/monicahq/docker/blob/main/.examples/full/fpm/web/)
@@ -224,7 +224,7 @@ When using FPM image, you will need another container with a webserver to proxy
224
224
restart: always
225
225
226
226
db:
227
-
image: mysql:5.7
227
+
image: mariadb:11
228
228
environment:
229
229
- MYSQL_RANDOM_ROOT_PASSWORD=true
230
230
- MYSQL_DATABASE=monica
@@ -267,7 +267,7 @@ One way to expose your Monica instance is to use a proxy webserver from your hos
267
267
268
268
### Using a proxy webserver container
269
269
270
-
See some examples of docker-compose possibilities in the [example section](https://github.com/monicahq/docker/blob/master/.examples) to show how to a proxy webserver with ssl capabilities.
270
+
See some examples of docker-compose possibilities in the [example section](https://github.com/monicahq/docker/blob/main/.examples) to show how to a proxy webserver with ssl capabilities.
0 commit comments