mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 20:54:31 +08:00
6 lines
201 B
Bash
Executable File
6 lines
201 B
Bash
Executable File
#!/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"
|