mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 08:09:33 +08:00
6 lines
191 B
Bash
Executable File
6 lines
191 B
Bash
Executable File
#!/bin/bash
|
|
|
|
PARAMS="$@"
|
|
CMD="cd /src && HOME=/home/discourse RAILS_ENV=${RAILS_ENV:=development} chpst -u discourse:discourse rake $PARAMS"
|
|
docker exec -it discourse_dev /bin/bash -c "$CMD"
|