mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-06-13 02:59:50 +08:00
5 lines
195 B
Bash
Executable file
Vendored
5 lines
195 B
Bash
Executable file
Vendored
#!/bin/bash
|
|
|
|
PARAMS="$@"
|
|
CMD="cd /src && RAILS_ENV=${RAILS_ENV:=development} bundle exec sidekiq -q critical,low,default"
|
|
docker exec -it -u discourse:discourse discourse_dev /bin/bash -c "$CMD"
|