Skip to content

Instantly share code, notes, and snippets.

@tdewin
Last active May 24, 2023 07:05
Show Gist options
  • Select an option

  • Save tdewin/ec2392366779514e42a88c6eaee656c0 to your computer and use it in GitHub Desktop.

Select an option

Save tdewin/ec2392366779514e42a88c6eaee656c0 to your computer and use it in GitHub Desktop.
k3s support services
#!/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