Hi All! Trying to kick the tires on Growthbook an...
# ask-questions
g
Hi All! Trying to kick the tires on Growthbook and figured ECS seemed like a good place to put it. Here is what I did to my docker-compose.yml, the service seems to run for a bit and die without much info as to why. Any insights on how to do a POC somewhere besides my laptop?
Copy code
version: "3"
services:
  mongo:
    image: "mongo:latest"
    environment:
      - MONGO_INITDB_ROOT_USERNAME=root
      - MONGO_INITDB_ROOT_PASSWORD=password
  growthbook:
    image: "growthbook/growthbook:latest"
    ports:
      - "3000:3000"
      - "3100:3100"
    depends_on:
      - mongo
    environment:
      - API_HOST=<http://growthbook.mydomain.team:3100>
      - APP_ORIGIN=<http://growthbook.mydomain.team:3000>
      - MONGODB_URI=<mongodb://root:password@mongo:27017/>
x-aws-vpc: "vpc-0ffa1c8e015fdfada"
f
are you able to see logs for the growthbook container?
g
I think its actually something about AWS reassigning the IP address that is being used by the container. I'm going to see if I can switch it to an elastic IP