9 lines
182 B
Bash
Executable File
9 lines
182 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Start Sidekiq in background
|
|
bundle exec sidekiq -C config/sidekiq.yml -e production &
|
|
|
|
# Start Puma on port 3000
|
|
exec bundle exec puma -C config/puma_docker.rb
|