8 lines
137 B
Bash
8 lines
137 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
podman stop frontend-dev
|
||
|
podman stop backend-dev
|
||
|
podman rm frontend-dev
|
||
|
podman rm backend-dev
|
||
|
podman-compose up --build
|