Skip to content

Commit

Permalink
Merge pull request #5 from mietzen/patch-1
Browse files Browse the repository at this point in the history
Added install hint for systems without AVX support
  • Loading branch information
moisout committed Oct 30, 2023
2 parents 116dbd0 + 916f42a commit 0a7593e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions content/2.installation/1.docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,3 +87,25 @@ services:
networks:
viewtube:
```

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

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`:

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

0 comments on commit 0a7593e

Please sign in to comment.