11 lines
198 B
Bash
Executable File
11 lines
198 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# run everything in start.d
|
|
find /start.d -type f -executable -exec {} \;
|
|
|
|
# Cleanly kill supervisor when container is stopped
|
|
trap 'kill $(jobs -p)' EXIT
|
|
|
|
# start services
|
|
supervisord
|