mirror of
https://github.com/roapi/roapi.git
synced 2026-06-05 21:04:02 +08:00
11 lines
202 B
Bash
11 lines
202 B
Bash
#!/bin/bash
|
|
|
|
set -eux
|
|
|
|
CTLBIN="docker"
|
|
if which podman &>/dev/null; then
|
|
CTLBIN="podman"
|
|
fi
|
|
|
|
${CTLBIN} run -d --name minio -p 9000:9000 quay.io/minio/minio:RELEASE.2023-08-23T10-07-06Z server /data
|