6 lines
133 B
Bash
Executable File
6 lines
133 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
cd "$(dirname $(dirname "$0"))" || exit
|
|
|
|
docker compose -f docker-compose-develop.yaml up --build --watch
|