some-umbrella-45927
04/19/2023, 4:58 PMblue-hamburger-60411
04/19/2023, 5:24 PMsome-umbrella-45927
04/19/2023, 6:18 PMbetter-magician-65629
04/19/2023, 6:59 PMDOCKER_DEFAULT_PLATFORM=linux/amd64 docker-compose up -d
this is the PR they provided for us to update the docs: https://github.com/growthbook/growthbook/pull/1194
did you want to test their suggestions to see if it works and let us know?blue-hamburger-60411
04/19/2023, 7:06 PMDOCKER_DEFAULT_PLATFORM
should help as suggested above.
for logs, I check the container logs using docker container logs -f <container_name>
container name could be something like growthbook_growthbook_1
fresh-football-47124
some-umbrella-45927
04/19/2023, 8:20 PMDOCKER_DEFAULT_PLATFORM
and using an earlier version of MongoDB 5.0+ as "MongoDB 5.0+ requires a CPU with AVX support, and your current system does not appear to have that!"blue-hamburger-60411
04/19/2023, 9:12 PMsome-umbrella-45927
04/21/2023, 9:24 PMversion: "3"
services:
mongo:
image: "mongo:4.4.6"
environment:
- MONGO_INITDB_ROOT_USERNAME=root
- MONGO_INITDB_ROOT_PASSWORD=password
growthbook:
image: "growthbook/growthbook:latest"
platform: "linux/amd64"
ports:
- "3000:3000"
- "3100:3100"
depends_on:
- mongo
environment:
- MONGODB_URI=<mongodb://root:password@mongo:27017/>
volumes:
- uploads:/Users/Hajime.Alabanza/growthbook/data/
volumes:
uploads: