docker-nexus/start

13 lines
218 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
chown nexus /nexus
# start services
supervisord