Initial clean commit
This commit is contained in:
commit
6784d81c2c
141 changed files with 25219 additions and 0 deletions
14
reset_and_deploy.sh
Executable file
14
reset_and_deploy.sh
Executable file
|
|
@ -0,0 +1,14 @@
|
|||
#!/bin/bash
|
||||
|
||||
echo "Stopping all containers..."
|
||||
docker-compose down
|
||||
|
||||
echo "Removing data volumes..."
|
||||
# Use sudo if necessary, or ensure current user has permissions
|
||||
rm -rf pgdata pgdata-replica redis-data qdrant_storage
|
||||
|
||||
echo "Starting deployment from scratch..."
|
||||
docker-compose up -d --build
|
||||
|
||||
echo "Deployment complete. Checking status..."
|
||||
docker-compose ps
|
||||
Loading…
Add table
Add a link
Reference in a new issue