mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-01 16:19:37 +01:00
7 lines
148 B
Bash
7 lines
148 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
[ $EXTERNAL_DB -eq 1 ] || pg_ctl start -w -t 60 -D ${PGDATA}
|
||
|
/harbor/migrate
|
||
|
[ $EXTERNAL_DB -eq 1 ] || pg_ctl stop -D ${PGDATA}
|