Initial Commit
This commit is contained in:
12
machine-setup.sh
Normal file
12
machine-setup.sh
Normal file
@@ -0,0 +1,12 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
yum install -y docker perl
|
||||
systemctl enable --now docker
|
||||
VERSION=v4.40.5
|
||||
BINARY=yq_linux_amd64
|
||||
wget https://github.com/mikefarah/yq/releases/download/${VERSION}/${BINARY}.tar.gz -O - |\
|
||||
tar xz && mv ${BINARY} /usr/bin/yq
|
||||
|
||||
|
||||
Reference in New Issue
Block a user