2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00
discourse/bin/docker/sidekiq

6 lines
201 B
Text
Raw Normal View History

#!/bin/bash
PARAMS="$@"
CMD="cd /src && RAILS_ENV=${RAILS_ENV:=development} bundle exec sidekiq -q critical -q low -q default"
docker exec -it -u discourse:discourse discourse_dev /bin/bash -c "$CMD"