-
-
Save taoyuan/35c02fb3ecb436313a8437541ad62e98 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
### BEGIN INIT INFO | |
# Provides: dockercompose | |
# Required-Start: $docker | |
# Required-Stop: $docker | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Docker Services | |
### END INIT INFO | |
set -e | |
PROJECT_NAME=boot | |
YAMLFILE=/etc/docker-compose/docker-compose.yml | |
OPTS="-f $YAMLFILE -p $PROJECT_NAME" | |
UPOPTS="-d --no-recreate --no-build --no-deps" | |
. /lib/lsb/init-functions | |
case "$1" in | |
start) | |
log_daemon_msg "Starting Docker Compose" "dockercompose" || true | |
docker-compose $OPTS up $UPOPTS | |
;; | |
stop) | |
log_daemon_msg "Stopping Docker Compose" "dockercompose" || true | |
docker-compose $OPTS stop | |
;; | |
reload) | |
log_daemon_msg "Reloading Docker Compose" "dockercompose" || true | |
docker-compose $OPTS up $UPOPTS | |
;; | |
restart) | |
docker-compose $OPTS stop | |
docker-compose $OPTS up $UPOPTS | |
;; | |
*) | |
log_action_msg "Usage: /etc/init.d/dockercompose {start|stop|restart|reload}" || true | |
exit 1 | |
;; | |
esac | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment