22 lines
556 B
Bash
22 lines
556 B
Bash
#!/bin/bash
|
|
|
|
USER=t31m
|
|
|
|
# update repos + system
|
|
apt get update && apt upgrade
|
|
|
|
# install env packages
|
|
apt install git fish fzf
|
|
|
|
# install docker stable, if this failes try below
|
|
curl -fsSL https://get.docker.com | sh
|
|
#curl -fsSL https://test.docker.com | sh
|
|
|
|
# install docker-compose
|
|
curl -L https://github.com/docker/compose/releases/download/1.25.4/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
|
|
chmod +x /usr/local/bin/docker-compose
|
|
|
|
usermod -aG docker t31m
|
|
|
|
echo "Initial Setup Complete. Please run fish_setup.sh for env setup"
|