Skip to content

Commit

Permalink
Add some more bundle exec commands to fix the containers
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeer committed Dec 19, 2019
1 parent 96e6574 commit d950372
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ services:
# For running in dev
volumes:
- ".:/opt/"
command: rails server
command: bundle exec rails server
postgres:
image: postgres
ports:
Expand Down Expand Up @@ -71,7 +71,7 @@ services:
args:
# For development, installs test and development
- BUNDLE_WITHOUT=nothing
command: sidekiq -C config/sidekiq.yml.erb
command: bundle exec sidekiq -C config/sidekiq.yml.erb
volumes:
- '.:/app'
env_file:
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ RUN apk --no-cache add --virtual build-dependencies \

RUN NO_DATABASE=true bundle exec rake assets:precompile
# Start the server by default, listening for all connections
CMD puma -C config/puma.rb
CMD bundle exec puma -C config/puma.rb

0 comments on commit d950372

Please sign in to comment.