docker bugfix: was assuming api server was on localhost instead of provided HOST_IP

This commit is contained in:
Dave Horton
2021-01-12 08:24:47 -05:00
parent fe46f4ef05
commit 5fd0e8f8fa
+1 -1
View File
@@ -90,7 +90,7 @@ services:
ports:
- "3001:3001"
environment:
REACT_APP_API_BASE_URL: http://127.0.0.1:3000/v1
REACT_APP_API_BASE_URL: http://${HOST_IP}:3000/v1
depends_on:
- api-server