mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 22:21:55 +08:00
15 lines
262 B
Bash
Executable File
15 lines
262 B
Bash
Executable File
#!/bin/bash
|
|
|
|
exec docker exec \
|
|
-it \
|
|
-u discourse:discourse \
|
|
-w '/src' \
|
|
-e RUBY_GLOBAL_METHOD_CACHE_SIZE=131072 \
|
|
-e LD_PRELOAD=/usr/lib/libjemalloc.so \
|
|
-e CI \
|
|
-e RAILS_ENV \
|
|
-e NO_EMBER_CLI \
|
|
-e QUNIT_RAILS_ENV \
|
|
discourse_dev \
|
|
"$@"
|