mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 18:43:37 +08:00
6 lines
256 B
Plaintext
6 lines
256 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
PARAMS="$@"
|
||
|
CMD="cd /src && USER=discourse RUBY_GLOBAL_METHOD_CACHE_SIZE=131072 LD_PRELOAD=/usr/lib/libjemalloc.so RAILS_ENV=${RAILS_ENV:=development} bin/rspec $PARAMS"
|
||
|
docker exec -it -u discourse:discourse discourse_dev /bin/bash -c "$CMD"
|