Initial commit
This commit is contained in:
parent
2bbb775155
commit
49b528a66b
62 changed files with 10923 additions and 0 deletions
13
stop.sh
Executable file
13
stop.sh
Executable file
|
|
@ -0,0 +1,13 @@
|
|||
#!/bin/bash
|
||||
# Helper script to stop Laravel containers
|
||||
|
||||
PODMAN="flatpak-spawn --host podman"
|
||||
|
||||
echo "Stopping containers..."
|
||||
$PODMAN stop laravel-app laravel-db laravel-redis 2>/dev/null
|
||||
echo "Removing containers..."
|
||||
$PODMAN rm laravel-app laravel-db laravel-redis 2>/dev/null
|
||||
echo "✓ Containers stopped and removed"
|
||||
echo ""
|
||||
echo "Note: Database data is preserved in the 'laravel-dbdata' volume"
|
||||
echo "To remove the volume and delete all data: flatpak-spawn --host podman volume rm laravel-dbdata"
|
||||
Loading…
Add table
Add a link
Reference in a new issue