mirror of
https://github.com/geoserver/geoserver-cloud.git
synced 2025-12-08 20:16:08 +00:00
12 lines
278 B
Bash
Executable File
12 lines
278 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# read GSCLOUD_VERSION from ./.env
|
|
export $(cat ./.env)
|
|
|
|
podman pull docker.io/library/rabbitmq:4-management-alpine
|
|
|
|
for i in discovery config gateway rest webui wms wfs wcs gwc
|
|
do
|
|
podman pull docker-daemon:geoservercloud/geoserver-cloud-$i:$GSCLOUD_VERSION
|
|
done
|