Forked from tonymtz/Install postgres 9.4 on ubuntu 18.04.sh
Created
January 20, 2020 00:29
-
-
Save erikvinicius/f3219e934d6ff21eef670ae2ed60ee80 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 update | |
sudo apt install postgresql-9.4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment