Last active
May 24, 2023 07:05
-
-
Save tdewin/ec2392366779514e42a88c6eaee656c0 to your computer and use it in GitHub Desktop.
k3s support services
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| apt-get -y update | |
| DEBIAN_FRONTEND=noninteractive apt-get -y install podman | |
| mkdir -p /minio/data | |
| podman run -d --name minio -v /minio/data:/data -e MINIO_ROOT_USER=bert -e MINIO_ROOT_PASSWORD=changeme --restart=always -p 9000:9000 -p 9001:9001 docker.io/minio/minio server /data --console-address ":9001" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment