mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 23:26:18 +08:00
6 lines
112 B
Bash
Executable File
6 lines
112 B
Bash
Executable File
#!/bin/bash
|
|
|
|
PARAMS="$@"
|
|
CMD="chpst -u postgres psql $PARAMS"
|
|
docker exec -it discourse_dev /bin/bash -c "$CMD"
|