9 lines
141 B
Bash
Executable file
9 lines
141 B
Bash
Executable file
#!/bin/bash
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
# fetch latest version
|
|
docker-compose pull --ignore-pull-failures
|
|
# reload if needed
|
|
docker-compose up -d
|