Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ ENV BUNDLE_FORCE_RUBY_PLATFORM=true
RUN bundle config set with 'postgresql iodine'
RUN bundle install --jobs=8

ENV RACK_ENV=production
ENV DBTYPE=postgresql

EXPOSE 8080
Expand Down
3 changes: 2 additions & 1 deletion frameworks/Ruby/roda-sequel/roda-sequel-postgres.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ ENV BUNDLE_FORCE_RUBY_PLATFORM=true
RUN bundle config set with 'postgresql puma'
RUN bundle install --jobs=8

ENV RACK_ENV=production
ENV DBTYPE=postgresql

ENV WEB_CONCURRENCY=auto
EXPOSE 8080

CMD bundle exec puma -C config/mri_puma.rb -b tcp://0.0.0.0:8080 -e production
CMD bundle exec puma -C config/mri_puma.rb -b tcp://0.0.0.0:8080
3 changes: 2 additions & 1 deletion frameworks/Ruby/roda-sequel/roda-sequel.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ ENV BUNDLE_FORCE_RUBY_PLATFORM=true
RUN bundle config set with 'mysql puma'
RUN bundle install --jobs=8

ENV RACK_ENV=production
ENV DBTYPE=mysql

ENV WEB_CONCURRENCY=auto
EXPOSE 8080

CMD bundle exec puma -C config/mri_puma.rb -b tcp://0.0.0.0:8080 -e production
CMD bundle exec puma -C config/mri_puma.rb -b tcp://0.0.0.0:8080
Loading