5 lines
234 B
Bash
Executable File
5 lines
234 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Compatibility shim — the launcher is now ONE script: start.sh
|
|
# (./run_docker.sh [logs|stop|restart|build|fg] still works and forwards there.)
|
|
exec "$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/start.sh" "$@"
|