diff --git a/postgres-setup.sh b/postgres-setup.sh new file mode 100644 index 0000000..38161f0 --- /dev/null +++ b/postgres-setup.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +# Catch errors +set -e + +# Update the repository +sudo apt-get update + +# Upgrade repository software +sudo apt upgrade -y + +# Install postgres and common utils +sudo apt install postgresql postgresql-contrib \ No newline at end of file