datatracker/docker/cleandb
Robert Sparks aa718e7e98
chore: bring docker-compose to root level (#3642) (#3643)
Authored-by: Nicolas Giard <github@ngpixel.com>
2022-03-14 17:17:31 -05:00

10 lines
207 B
Bash
Executable file

#!/bin/bash
echo "Shutting down any instance still running..."
cd ..
docker-compose down -v
echo "Rebuilding the DB image..."
docker-compose pull db
docker-compose build --no-cache db
cd docker
echo "Done!"