1
0
mirror of synced 2025-12-25 02:09:19 -05:00
Files
airbyte/tools/app/start.sh

16 lines
159 B
Bash
Executable File

#!/usr/bin/env sh
set -e
. tools/lib/lib.sh
PORT=${PORT:-8080}
main() {
assert_root
docker-compose -f docker-compose.dev.yaml up --build
}
main "$@"