mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 21:43:45 +08:00
97e2a614c8
add symlink to simplify invoking docker commands `d/rake`
6 lines
195 B
Bash
Executable File
6 lines
195 B
Bash
Executable File
#!/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"
|