30 lines
478 B
Plaintext
Raw Normal View History

2017-12-29 16:31:48 +01:00
#!/sbin/openrc-run
description="GNU Health docker container"
depend() {
need docker postgres
2017-12-29 16:31:48 +01:00
}
start() {
/usr/bin/docker run -d --rm \
--name gnuhealth \
-h gnuhealth \
2018-02-03 11:20:40 +01:00
--link postfix \
--link postgres \
-v /srv/gnuhealth/conf:/srv/gnuhealth/gnuhealth/tryton/server/config \
gnuhealth
2017-12-29 16:31:48 +01:00
}
start_post() {
/usr/bin/spotter-appmgr register-proxy gnuhealth
}
stop_pre() {
/usr/bin/spotter-appmgr unregister-proxy gnuhealth
}
2017-12-29 16:31:48 +01:00
stop() {
/usr/bin/docker stop gnuhealth
}