6 lines
141 B
Bash
6 lines
141 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -e
|
||
|
|
||
|
# These have to be wiped out before we boot the containers.
|
||
|
rm -rf ./volume/{deluge-1,deluge-2}
|
||
|
docker compose up
|