backend/run-dev.sh
Radiicall cc07d78325
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
build: add a run-dev.sh for local testing
2025-05-02 16:23:45 +02:00

9 lines
237 B
Bash
Executable file

#!/bin/sh
podman-compose --file compose.dev.yml up --build
echo "SHUTTING DOWN CONTAINERS"
podman container stop backend_backend_1 backend_database_1
echo "DELETING CONTAINERS"
podman container rm backend_backend_1 backend_database_1