Basil V
02/11/2021, 6:58 PMdocker-compose up
but something is not working. I'm not getting any errors however the application is not available at localhost:3000. Just to confirm, should this example be runnable as-is or is any other configuration required? Given that I'm not getting any errors, I'm thinking the problem may be with exposing port 3000. I also ran lsof -i:3000
locally and it shows nothing, making me think the container port isn't being exposed properly. The docker compose file does include the line expose: - "3000"
in the dagit container though, so not sure what is wrong. Anybody have any suggestions? Thanks so much!http://{virtual-machine ip}:3000
and it is running properly here. So the issue is the port not being exposed. If anybody has an idea what the problem may be please let me know. Thanks!stdin_open: true
tty: true
However, this did not resolve the issue. Still working on it...expose:
- "3000"
ports:
- "3000:3000"
max
02/11/2021, 8:34 PMexpose
chunkBasil V
02/11/2021, 8:34 PMmax
02/11/2021, 8:34 PMBasil V
02/11/2021, 8:36 PMexpose
chunkmax
02/12/2021, 5:09 AMdaniel
02/12/2021, 5:48 AMBasil V
02/16/2021, 11:37 PM~/.aws
file (containing creds/config) into the Docker containers at /root
but Dagster/boto3 still isn't able to find the credentials. Do you know how to resolve this? (note for actual deployment we plan to use IAM but for testing Docker locally I need to figure out how to pass the creds in via compose). Thanks again!daniel
02/16/2021, 11:39 PMBasil V
02/16/2021, 11:41 PMdaniel
02/16/2021, 11:42 PMBasil V
02/16/2021, 11:42 PMdocker-machine create ...
was not port forwarding. Likely due to how I installed docker (with Homebrew rather than Docker Desktop for Mac—brew doesn't seem to port forward by default whereas I think Docker Desktop does). Anyways, solution was to go into the VirtualBox VM network adapter and manually add the port forwarding ports.
tl;dr if anyone runs into this kind of issue in the future, find out how they installed Docker. If they used brew they may need to manually forward ports.
Thanks again for your help!daniel
02/18/2021, 4:54 PM