mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 20:27:28 +08:00
fef45789c4
- pass USER=discourse which is not passed in from docker exec (improves backup restore) - add unicorn script and unicorn support (expose port 9292)
11 lines
347 B
Bash
Executable File
11 lines
347 B
Bash
Executable File
#!/bin/bash
|
|
|
|
PARAMS="$@"
|
|
if [[ $# = 1 ]] && [[ "$1" =~ "s" ]];
|
|
then
|
|
PARAMS="$PARAMS -b 0.0.0.0"
|
|
fi
|
|
|
|
CMD="cd /src && USER=discourse RUBY_GLOBAL_METHOD_CACHE_SIZE=131072 LD_PRELOAD=/usr/lib/libjemalloc.so RACK_HANDLER=puma RAILS_ENV=${RAILS_ENV:=development} rails $PARAMS"
|
|
docker exec -it -u discourse:discourse discourse_dev /bin/bash -c "$CMD"
|