mirror of
https://github.com/furyhawk/cloudy.git
synced 2026-05-20 07:01:04 +00:00
10 lines
177 B
Bash
Executable File
10 lines
177 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Cleaning up..."
|
|
docker-compose down
|
|
|
|
printf "Deleting network: "
|
|
eval $(egrep '^NETWORK' .env | xargs)
|
|
printf "$NETWORK\n"
|
|
docker network rm $NETWORK | echo
|