Look at LSB init scripts for more information.
Copy to /etc/init.d:
# replace "$YOUR_SERVICE_NAME" with your service's name (whenever it's not enough obvious)| $ docker-compose up -d # start containers in background | |
| $ docker-compose kill # stop containers | |
| $ docker-compose pull # refresh the local images with the ones of the registry | |
| $ docker-compose up -d --build # force rebuild of Dockerfiles | |
| $ docker-compose rm # remove stopped containers | |
| $ docker ps # see list of running containers | |
| $ docker exec -ti [NAME] bash # ssh to the container | |
| # list all images | |
| docker images |
Look at LSB init scripts for more information.
Copy to /etc/init.d:
# replace "$YOUR_SERVICE_NAME" with your service's name (whenever it's not enough obvious)| #!/bin/sh | |
| # | |
| # /etc/init.d/kibana4 -- startup script for kibana4 | |
| # bsmith@the408.com 2015-02-20; used elasticsearch init script as template | |
| # https://github.com/akabdog/scripts/edit/master/kibana4_init | |
| # | |
| ### BEGIN INIT INFO | |
| # Provides: kibana4 | |
| # Required-Start: $network $remote_fs $named | |
| # Required-Stop: $network $remote_fs $named |