mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-01-06 22:03:59 -05:00
We have been submoduling Supabase for provisioning local Supabase instances using docker-compose. Aside from the huge size of unrelated code being pulled, there is also the risk of pulling unintentional breaking change from the upstream to the platform. The latest Supabase changes hide the 5432 port from the supabase-db container and shift it to the supavisor, the instance that we are currently not using. This causes an error in the existing setup. ## BREAKING CHANGES This change will introduce different volume locations for the database content, pulling this change will make the data content fresh from the start. To keep your old data with this change, execute this command: ``` cp -r supabase/docker/volumes/db/data db/docker/volumes/db/data ``` ### Changes 🏗️ The scope of this PR is snapshotting the current docker-compose code obtained from the Supabase repository and embedding it into our repository. This will eliminate the need for submodule / recursive cloning and bringing the entire Supabase repository into the platform. ### Checklist 📋 #### For code changes: - [x] I have clearly listed my changes in the PR description - [x] I have made a test plan - [x] I have tested my changes according to the test plan: <!-- Put your test plan here: --> - [x] Existing CI
44 lines
1.1 KiB
Bash
Executable File
44 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "WARNING: This will remove all containers and container data, and will reset the .env file. This action cannot be undone!"
|
|
read -p "Are you sure you want to proceed? (y/N) " -n 1 -r
|
|
echo # Move to a new line
|
|
if [[ ! $REPLY =~ ^[Yy]$ ]]
|
|
then
|
|
echo "Operation cancelled."
|
|
exit 1
|
|
fi
|
|
|
|
echo "Stopping and removing all containers..."
|
|
docker compose -f docker-compose.yml -f ./dev/docker-compose.dev.yml down -v --remove-orphans
|
|
|
|
echo "Cleaning up bind-mounted directories..."
|
|
BIND_MOUNTS=(
|
|
"./volumes/db/data"
|
|
)
|
|
|
|
for DIR in "${BIND_MOUNTS[@]}"; do
|
|
if [ -d "$DIR" ]; then
|
|
echo "Deleting $DIR..."
|
|
rm -rf "$DIR"
|
|
else
|
|
echo "Directory $DIR does not exist. Skipping bind mount deletion step..."
|
|
fi
|
|
done
|
|
|
|
echo "Resetting .env file..."
|
|
if [ -f ".env" ]; then
|
|
echo "Removing existing .env file..."
|
|
rm -f .env
|
|
else
|
|
echo "No .env file found. Skipping .env removal step..."
|
|
fi
|
|
|
|
if [ -f ".env.example" ]; then
|
|
echo "Copying .env.example to .env..."
|
|
cp .env.example .env
|
|
else
|
|
echo ".env.example file not found. Skipping .env reset step..."
|
|
fi
|
|
|
|
echo "Cleanup complete!" |