mirror of
https://github.com/searxng/searxng-docker
synced 2024-11-11 01:10:34 +00:00
11 lines
221 B
Bash
Executable File
11 lines
221 B
Bash
Executable File
#!/bin/sh
|
|
|
|
BASE_DIR="$(dirname -- "`readlink -f -- "$0"`")"
|
|
cd -- "$BASE_DIR"
|
|
|
|
. ./util.sh
|
|
|
|
$DOCKERCOMPOSE -f $DOCKERCOMPOSEFILE down -v
|
|
$DOCKERCOMPOSE -f $DOCKERCOMPOSEFILE rm -fv
|
|
$DOCKERCOMPOSE -f $DOCKERCOMPOSEFILE up
|