thousands-doctor-54767
10/06/2022, 6:37 PM<http://localhost:3100>
. Verified I can hit that url via curlcurl <http://localhost:3100>
{
"name": "GrowthBook API",
"production": false,
"api_host": "<http://localhost:3100>",
"app_origin": "<http://localhost:3000>",
"config_source": "db",
"email_enabled": false,
"build": {
"sha": "af7445a60d38c531c2364ff151d4010360ce1032",
"date": "2022-10-05T14:17:00Z"
}
}
fresh-football-47124
APP_ORIGIN
and API_HOST
?thousands-doctor-54767
10/06/2022, 7:24 PM% cat docker-compose.yml
# docker-compose.yml
version: "3"
services:
mongo:
image: "mongo:latest"
environment:
- MONGO_INITDB_ROOT_USERNAME=root
- MONGO_INITDB_ROOT_PASSWORD=password
growthbook:
image: "growthbook/growthbook:latest"
ports:
- "4100:3000"
- "3100:3100"
depends_on:
- mongo
environment:
- MONGODB_URI=<mongodb://root:password@mongo:27017/>
volumes:
- uploads:/usr/local/src/app/packages/back-end/uploads
volumes:
uploads:
fresh-football-47124
thousands-doctor-54767
10/07/2022, 2:30 PM