-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docker image crashing on m1 mac #15
Comments
turns out netty also running into same issue
at this point not sure what's different about store-service that's causing this, since auth and layer1 are both working and they have pretty much the same ktor/engine configurations |
we know it's related to docker desktop issue, but that doesn't explain why auth and layer1 is working... |
The mystery is solved - what actually happened: When testing with the docker-compose at https://github.com/Open-MBEE/flexo-mms-deployment/tree/develop/docker-compose, the store service on mac crashes with the above error. This error is a known docker for mac issue. What actually led to the the error being thrown is another exception during application startup when s3 client is being initialized. The deployment repo had a misconfigured env var for s3 that's causing s3 client to fail when looking for aws credentials. This exception is shown on a linux machine running that compose file. It's swallowed/hidden by the docker for mac exception when ran on mac and i believe windows. Fixing the env var in deployment repo fixes that compose and store service no longer crash. |
when trying to run latest flexo-mms-store-service image on m1 mac, got this
this doesn't happen with layer1 service or auth service, there's probably some config that's causing this to be platform specific
The text was updated successfully, but these errors were encountered: