blob: 02883f69955fb6e4f3a1344090464dc15fdc322b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#!/sbin/openrc-run
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
depend() {
docker
}
start() {
ebegin "openbook: start"
docker-compose -f /root/docker-registry/docker-compose.yaml up -d
eend $?
}
stop() {
ebegin "openstack: stop"
docker-compose -f /root/docker-registry/docker-compose.yaml stop
docker-compose -f /root/docker-registry/docker-compose.yaml rm -f
eend $?
}
restart() {
stop
start
}
status() {
docker-compose -f /root/docker-registry/docker-compose.yaml ps
}
|