Spotter-VM/motech/etc/init.d/motech

31 lines
463 B
Plaintext
Executable File

#!/sbin/openrc-run
description="Motech docker container"
depend() {
need docker activemq postfix postgres
}
start() {
/usr/bin/docker run -d --rm \
--name motech \
-h motech \
--link activemq \
--link postfix \
--link postgres \
-v /srv/motech/conf:/srv/tomcat/.motech \
motech
}
start_post() {
/usr/bin/spotter-appmgr register-proxy motech
}
stop_pre() {
/usr/bin/spotter-appmgr unregister-proxy motech
}
stop() {
/usr/bin/docker stop motech
}