mirror of
https://github.com/geoserver/geoserver-cloud.git
synced 2025-12-08 20:16:08 +00:00
8 lines
167 B
Bash
Executable File
8 lines
167 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for service in gateway rest webui wms wfs wcs gwc discovery config rabbitmq
|
|
do
|
|
podman container stop -i $service
|
|
podman container rm -i $service
|
|
done
|