9 lines
172 B
Bash
9 lines
172 B
Bash
|
#!/bin/bash
|
||
|
#Absolute path to this script
|
||
|
SCRIPT=$(readlink -f $0)
|
||
|
#Absolute path this script is in
|
||
|
SCRIPTPATH=$(dirname $SCRIPT)
|
||
|
|
||
|
cd $SCRIPTPATH
|
||
|
sudo docker-compose start
|