8 lines
230 B
Bash
Executable File
8 lines
230 B
Bash
Executable File
#!/bin/bash
|
|
start='date'
|
|
echo "Running update..."
|
|
docker-compose pull
|
|
docker-compose --compatibility down && docker-compose --compatibility up -d
|
|
end='date'
|
|
echo -e "\nScript has reached its end after: " $((end-start)) " seconds"
|