Skip to content

Commit

Permalink
Typos, format
Browse files Browse the repository at this point in the history
  • Loading branch information
mietzen committed Oct 28, 2023
1 parent 9f9385e commit 916f42a
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions content/2.installation/1.docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,22 @@ networks:

#### Running on systems without AVX support, e.g. Synology NAS

When running on home NAS systems like Synlogy you may encounter the following warning:
When running on a home NAS system, e.g. Synlogy, QNAP, ASUSTOR, etc., you may encounter the following warning:

```
```Shell
viewtube-mongodb | WARNING: MongoDB 5.0+ requires a CPU with AVX support, and your current system does not appear to have that!
viewtube-mongodb | see https://jira.mongodb.org/browse/SERVER-54407
viewtube-mongodb | see also https://www.mongodb.com/community/forums/t/mongodb-5-0-cpu-intel-g4650-compatibility/116610/2
viewtube-mongodb | see also https://github.com/docker-library/mongo/issues/485#issuecomment-891991814
```

If so you may use `mongo:4.2` instead of `mongo:5`.
If so you may use `mongo:4.2` instead of `mongo:5`:

```yaml
...
viewtube-mongodb:
restart: unless-stopped
image: mongo:4.2
...
```

0 comments on commit 916f42a

Please sign in to comment.