mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-06-13 05:03:16 +08:00
5 lines
201 B
Bash
Executable file
Vendored
5 lines
201 B
Bash
Executable file
Vendored
#!/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"
|