Here lies the containerfile for building the Object Storage Dev Edition.
podman run -d \
--name dev-edition \
-p 8080:8081 \
-p 9080:9080 \
cp.stg.icr.io/cp/ibm-ceph/rgw-developer-experience-rhel10:v9.9.2If you like to start with a different user than the default, then
podman run -d \
--name dev-edition \
-p 8080:8081 \
-p 9080:9080 \
-e ACCESS_KEY="accesskey" \
-e SECRET_KEY="secretkey" \
cp.stg.icr.io/cp/ibm-ceph/rgw-developer-experience-rhel10:v9.9.2podman build -t object-storage-dev-edition .If you go with the default port mapping, then its quite easy as below
podman run -d \
--name dev-edition \
-p 8080:8081 \
-p 9080:9080 \
object-storage-dev-edition:latestIf you wish to change the default mapping then you need to provide the ENDPOINT as an env variable
podman run -d \
--name dev-edition \
-p 8080:8081 \
-p 9500:9080 \
-e ENDPOINT="http://127.0.0.1:9500" \
object-storage-dev-edition:latestOnce its deployed, the UI will be visible on http://localhost:8080 or whichever port you mapped for the UI
podman logs dev-editionwill show you the logs and see what crashed when starting.