Skip to content

Instantly share code, notes, and snippets.

@samalba
Created March 5, 2015 18:59
Show Gist options
  • Star 20 You must be signed in to star a gist
  • Fork 14 You must be signed in to fork a gist
  • Save samalba/8bc1f848b4fa2db6f12e to your computer and use it in GitHub Desktop.
Save samalba/8bc1f848b4fa2db6f12e to your computer and use it in GitHub Desktop.
#!/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
@shqear93
Copy link

Is there a way to set EnvironmentFile like systemd ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment