mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
5 lines
191 B
Bash
Executable file
5 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"
|