mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-28 18:06:34 +02:00
5 lines
220 B
Bash
Executable file
5 lines
220 B
Bash
Executable file
#!/bin/sh
|
|
|
|
DEBUG_PORT="${DEBUG_PORT:-9999}"
|
|
DEBUG_ADDRESS="${DEBUG_ADDRESS:-127.0.0.1}"
|
|
/bin/dlv exec /bin/pomerium --api-version=2 --headless --listen="${DEBUG_ADDRESS}:${DEBUG_PORT}" --log --accept-multiclient -- "$@"
|