Skip to content

Commit 2a61c4b

Browse files
author
ssuareza
committed
Adding exit 0 to avoid errors.
1 parent d06422a commit 2a61c4b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
22
echo "${POSTGRES_HOST}":*:*:"${POSTGRES_USER}":"${POSTGRES_PASS}" > ~/.pgpass
33
chmod 0600 ~/.pgpass
4-
cat ~/.pgpass
5-
psql -h ${POSTGRES_HOST} -U ${POSTGRES_USER} -w postgres -c "$@"
4+
psql -h ${POSTGRES_HOST} -U ${POSTGRES_USER} -w postgres -c "$@"
5+
exit 0

0 commit comments

Comments
 (0)