* chore: fix uid/gid mapping for non-vscode devs * chore: fix volume ownership in devcontainer * chore: use zsh in init script + remove temp mounted folders * chore: ignore group mapping error during devcontainer build * chore: fix ownership when running as root on host * chore: use new docker compose command format + fix root check * chore: improve uid/gid mapping message output * chore: include chromedriver permission fix * chore: skip parent dev image and install node directly instead of nvm * chore: reapply gitignore changes + better dev help message
11 lines
208 B
Bash
Executable file
11 lines
208 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!"
|