Created
February 19, 2018 00:08
-
-
Save iksnae/58d4f91cbd9bd83da24a779c0fd0c450 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $:dockerzon iksnae$ docker-compose up --build | |
| Building dockerzon | |
| Step 1/12 : FROM ruby:2.3-slim | |
| ---> 39bed6bce295 | |
| Step 2/12 : MAINTAINER Nick Janetakis <[email protected]> | |
| ---> Using cache | |
| ---> 7b913db1c007 | |
| Step 3/12 : RUN apt-get update && apt-get install -qq -y --no-install-recommends build-essential nodejs libpq-dev | |
| ---> Using cache | |
| ---> 1b3cd99aad94 | |
| Step 4/12 : ENV INSTALL_PATH /dockerzon | |
| ---> Using cache | |
| ---> e2b1c706fe1e | |
| Step 5/12 : RUN mkdir -p $INSTALL_PATH | |
| ---> Using cache | |
| ---> 944bc3890067 | |
| Step 6/12 : WORKDIR $INSTALL_PATH | |
| ---> Using cache | |
| ---> a15f9fede6a6 | |
| Step 7/12 : COPY Gemfile Gemfile | |
| ---> Using cache | |
| ---> ee99fe2662f5 | |
| Step 8/12 : RUN bundle install --binstubs | |
| ---> Using cache | |
| ---> ddcc36724dd2 | |
| Step 9/12 : COPY . . | |
| ---> Using cache | |
| ---> 2ea599aeb4db | |
| Step 10/12 : RUN bundle exec rake RAILS_ENV=production DATABASE_URL=postgresql://user:[email protected]/dbname SECRET_TOKEN=dummytoken assets:precompile | |
| ---> Running in 1145a9659407 | |
| rake aborted! | |
| NameError: uninitialized constant Sidekiq | |
| /dockerzon/config/initializers/sidekiq.rb:3:in `<top (required)>' | |
| /usr/local/bundle/gems/railties-4.2.6/lib/rails/engine.rb:652:in `block in load_config_initializer' | |
| /usr/local/bundle/gems/activesupport-4.2.6/lib/active_support/notifications.rb:166:in `instrument' | |
| /usr/local/bundle/gems/railties-4.2.6/lib/rails/engine.rb:651:in `load_config_initializer' | |
| /usr/local/bundle/gems/railties-4.2.6/lib/rails/engine.rb:616:in `block (2 levels) in <class:Engine>' | |
| /usr/local/bundle/gems/railties-4.2.6/lib/rails/engine.rb:615:in `each' | |
| /usr/local/bundle/gems/railties-4.2.6/lib/rails/engine.rb:615:in `block in <class:Engine>' | |
| /usr/local/bundle/gems/railties-4.2.6/lib/rails/initializable.rb:30:in `instance_exec' | |
| /usr/local/bundle/gems/railties-4.2.6/lib/rails/initializable.rb:30:in `run' | |
| /usr/local/bundle/gems/railties-4.2.6/lib/rails/initializable.rb:55:in `block in run_initializers' | |
| /usr/local/bundle/gems/railties-4.2.6/lib/rails/initializable.rb:44:in `each' | |
| /usr/local/bundle/gems/railties-4.2.6/lib/rails/initializable.rb:44:in `tsort_each_child' | |
| /usr/local/bundle/gems/railties-4.2.6/lib/rails/initializable.rb:54:in `run_initializers' | |
| /usr/local/bundle/gems/railties-4.2.6/lib/rails/application.rb:352:in `initialize!' | |
| /dockerzon/config/environment.rb:5:in `<top (required)>' | |
| /usr/local/bundle/gems/railties-4.2.6/lib/rails/application.rb:328:in `require' | |
| /usr/local/bundle/gems/railties-4.2.6/lib/rails/application.rb:328:in `require_environment!' | |
| /usr/local/bundle/gems/railties-4.2.6/lib/rails/application.rb:457:in `block in run_tasks_blocks' | |
| /usr/local/bundle/gems/sprockets-rails-3.2.1/lib/sprockets/rails/task.rb:62:in `block (2 levels) in define' | |
| /usr/local/bundle/gems/rake-12.3.0/exe/rake:27:in `<top (required)>' | |
| /usr/local/bin/bundle:23:in `load' | |
| /usr/local/bin/bundle:23:in `<main>' | |
| Tasks: TOP => environment | |
| (See full trace by running task with --trace) | |
| ERROR: Service 'dockerzon' failed to build: The command '/bin/sh -c bundle exec rake RAILS_ENV=production DATABASE_URL=postgresql://user:[email protected]/dbname SECRET_TOKEN=dummytoken assets:precompile' returned a non-zero code: 1 | |
| $:dockerzon iksnae$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment