mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 22:33:45 +08:00
6 lines
112 B
Plaintext
6 lines
112 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
PARAMS="$@"
|
||
|
CMD="chpst -u postgres psql $PARAMS"
|
||
|
docker exec -it discourse_dev /bin/bash -c "$CMD"
|