AustinCloudGuru commented on issue #4881:
URL: 
https://github.com/apache/incubator-devlake/issues/4881#issuecomment-1501946783

   Thanks.  They do match.  I should have written my question better.  The 
10.172.5.70 address is for the instance that I am running the docker containers 
on.  It seems like it is not honoring the DB_URL in the .env file.  My DB_URL 
entry in my .env file (password and instance obfuscated, and all other values 
default): 
   ```
   
DB_URL="mysql://merico:[email protected]:3306/devlake?charset=utf8mb4&parseTime=True"
   ```
   
   My docker-compose.yml:
   ```
   version: "3"
   services:
     grafana:
       image: apache/devlake-dashboard:v0.15.0
       ports:
         - 3002:3000
       volumes:
         - grafana-storage:/var/lib/grafana
       environment:
         GF_SERVER_ROOT_URL: "http://localhost:4000/grafana";
         GF_USERS_DEFAULT_THEME: "light"
         MYSQL_URL: devlake.XXXXXXXX.us-east-2.rds.amazonaws.com:3306
         MYSQL_DATABASE: devlake
         MYSQL_USER: merico
         MYSQL_PASSWORD:XXXXXXXXX
       restart: always
   
     devlake:
       image: apache/devlake:v0.15.0
       ports:
         - 8080:8080
       restart: always
       volumes:
         - ./.env:/app/.env
         - ./logs:/app/logs
       environment:
         LOGGING_DIR: /app/logs
   
     config-ui:
       image: apache/devlake-config-ui:v0.15.0
       ports:
         - 4000:4000
       env_file:
         - ./.env
       environment:
         DEVLAKE_ENDPOINT: devlake:8080
         GRAFANA_ENDPOINT: grafana:3000
         #ADMIN_USER: devlake
         #ADMIN_PASS: merico
       depends_on:
         - devlake
   
   volumes:
     grafana-storage:
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to