Quantcast
Channel: Ember.JS - Latest topics
Viewing all articles
Browse latest Browse all 4826

Docker Ember crashing

$
0
0

@jrock2004 wrote:

I am trying for local development to use ember in a container. The problem is that I will go and save a file and ember in the container crashes. Its just so frustrating and not sure if this is an ember or a docker issue. Here is what is in the log file

ERROR Summary:

  - broccoliBuilderErrorStack: Error: ENOENT: no such file or directory, scandir '/myapp/tmp/config_loader-input_base_path-bwCbaFQr.tmp/'
    at Object.fs.readdirSync (fs.js:904:18)
    at _walkSync (/myapp/node_modules/walk-sync/index.js:74:18)
    at Function.entries (/myapp/node_modules/walk-sync/index.js:50:10)
    at ConfigLoader.CachingWriter._conditionalBuild (/myapp/node_modules/broccoli-caching-writer/index.js:112:24)
    at /myapp/node_modules/broccoli-plugin/read_compat.js:93:34
    at tryCatch (/myapp/node_modules/rsvp/dist/rsvp.js:525:12)
    at invokeCallback (/myapp/node_modules/rsvp/dist/rsvp.js:538:13)
    at publish (/myapp/node_modules/rsvp/dist/rsvp.js:508:7)
    at flush (/myapp/node_modules/rsvp/dist/rsvp.js:2415:5)
    at _combinedTickCallback (internal/process/next_tick.js:131:7)
    at process._tickCallback (internal/process/next_tick.js:180:9)

  - codeFrame: ENOENT: no such file or directory, scandir '/myapp/tmp/config_loader-input_base_path-bwCbaFQr.tmp/'
  - errorMessage: Build Canceled: Broccoli Builder ran into an error with `ConfigLoader` plugin. 💥
ENOENT: no such file or directory, scandir '/myapp/tmp/config_loader-input_base_path-bwCbaFQr.tmp/'
  - errorType: Build Error
  - location:
    - column: [undefined]
    - file: [undefined]
    - line: [undefined]
    - treeDir: [undefined]
  - message: Build Canceled: Broccoli Builder ran into an error with `ConfigLoader` plugin. 💥
ENOENT: no such file or directory, scandir '/myapp/tmp/config_loader-input_base_path-bwCbaFQr.tmp/'
  - name: Error
  - nodeAnnotation: ConfigLoader
  - nodeName: ConfigLoader
  - originalErrorMessage: ENOENT: no such file or directory, scandir '/myapp/tmp/config_loader-input_base_path-bwCbaFQr.tmp/'
  - stack: Error: ENOENT: no such file or directory, scandir '/myapp/tmp/config_loader-input_base_path-bwCbaFQr.tmp/'
    at Object.fs.readdirSync (fs.js:904:18)
    at _walkSync (/myapp/node_modules/walk-sync/index.js:74:18)
    at Function.entries (/myapp/node_modules/walk-sync/index.js:50:10)
    at ConfigLoader.CachingWriter._conditionalBuild (/myapp/node_modules/broccoli-caching-writer/index.js:112:24)
    at /myapp/node_modules/broccoli-plugin/read_compat.js:93:34
    at tryCatch (/myapp/node_modules/rsvp/dist/rsvp.js:525:12)
    at invokeCallback (/myapp/node_modules/rsvp/dist/rsvp.js:538:13)
    at publish (/myapp/node_modules/rsvp/dist/rsvp.js:508:7)
    at flush (/myapp/node_modules/rsvp/dist/rsvp.js:2415:5)
    at _combinedTickCallback (internal/process/next_tick.js:131:7)
    at process._tickCallback (internal/process/next_tick.js:180:9)

Here is my docker-compose file

version: '3'

services:
  ember:
    # image: danlynn/ember-cli:2.18.2
    build: .
    container_name: my-ember
    ports:
      - 7357:7357
      - 4200:4200
      - 9222:9222
      - 49152:49152
    volumes:
      - .:/myapp
      - /myapp/bower_components
      - /myapp/node_modules
      - ./docker/entrypoint-ember.sh:/entrypoint-ember.sh
      - /myapp/tmp
    tmpfs:
      - /myapp/tmp
    command: ["sh", "/entrypoint-ember.sh"]

Any help would be appreciated

Posts: 2

Participants: 2

Read full topic


Viewing all articles
Browse latest Browse all 4826

Trending Articles