All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
9 lines
237 B
Bash
Executable file
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
|