Skip to content

Instantly share code, notes, and snippets.

@iliion
Created July 6, 2021 09:23
Show Gist options
  • Save iliion/a44548ba4b5d3fe450b538d5ccd5fcbc to your computer and use it in GitHub Desktop.
Save iliion/a44548ba4b5d3fe450b538d5ccd5fcbc to your computer and use it in GitHub Desktop.
PostgreSQL installation { Ubuntu }
#! /bin/bash
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
sudo apt-get update
sudo apt-get -y install postgresql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment