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

24 lines
410 B
Plaintext
Raw Normal View History

2018-01-19 20:32:16 +01:00
#!/sbin/openrc-run
description="Mifos X docker container"
depend() {
need docker net mariadb
2018-02-03 12:59:09 +01:00
use dns logger netmount postfix
2018-01-19 20:32:16 +01:00
}
start() {
/usr/bin/docker run -d --rm \
--name mifosx \
-h mifosx \
--link mariadb \
2018-02-03 12:59:09 +01:00
--link postfix \
-p 127.0.0.1:8012:8012 \
2018-01-27 14:25:41 +01:00
-v /srv/mifosx/conf/context.xml:/srv/tomcat/webapps/fineract-provider/META-INF/context.xml \
mifosx
2018-01-19 20:32:16 +01:00
}
stop() {
/usr/bin/docker stop mifosx
}