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