mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-22 15:24:55 +00:00
9 lines
210 B
Bash
9 lines
210 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Run database in docker-compose
|
|
|
|
cd ..
|
|
# Run Preinstall.
|
|
npm run prerun
|
|
# Run Postgres
|
|
export $(grep -v '^#' config.env | xargs) && docker compose -f docker-compose.dev.yml up -d postgres |