-
Notifications
You must be signed in to change notification settings - Fork 29
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
Test Server Error #9
Comments
That sort of looks like a project-specific issue. Can you replicate that on a fresh build of a new ember project ( |
To add a bit more colour, I'm using Docker for Windows with a shared mount. If I locally install ember-cli (within Windows Ubuntu) and run ember test --server then this works - so it seems to be something to do with the mounted volume and/or docker image. And I get the same error on a fresh build. Here's my docker-compose.yml file version: "3"
services:
app:
image: danlynn/ember-cli:2.15.1
volumes:
- .:/myapp
command: ['ember','server','--watcher','polling'] |
Sounds like a permissioning issue. Check into the details of volume mount ownership when using docker and windows. I’m guessing that it is having problems creating directories or files in tmp. Alternatively, you might try volumizing that tmp dir as a regular docker internal volume that simply stays in the docker host VM.
… On Sep 13, 2017, at 8:04 PM, Evan Davey ***@***.***> wrote:
To add a bit more colour, I'm using Docker for Windows with a shared mount. If I locally install ember-cli (within Windows Ubuntu) and run ember test --server then this works - so it seems to be something to do with the mounted volume and/or docker image.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub <#9 (comment)>, or mute the thread <https://github.com/notifications/unsubscribe-auth/AAA6YrBgKzfvTyMtzcMC8A_TkJRbD_ntks5siG2MgaJpZM4PVZUR>.
|
When trying to run ember test --server I always get an error similar to below, and the build process never completes. Running test without the server flag works fine.
The text was updated successfully, but these errors were encountered: