Remove redundant packages and move database specific ones to the db setup
* build-essential requires make, gcc * remove libmysql++-dev: the mysql2 gem only requires libmysqlclient-dev * remove postgresql-server-dev-9.1: the pg gem only requires libpq-dev * replace python-dev, python-pip with python2.7: the pygments.rb gem only requires python2.7
This commit is contained in:
parent
95ffe08674
commit
78d3611eba
2 changed files with 2 additions and 2 deletions
|
@ -35,7 +35,7 @@ GitLab supports the following databases:
|
|||
## PostgreSQL
|
||||
|
||||
# Install the database packages
|
||||
sudo apt-get install -y postgresql-9.1 postgresql-server-dev-9.1
|
||||
sudo apt-get install -y postgresql-9.1 libpq-dev
|
||||
|
||||
# Install only the necessary gems
|
||||
sudo -u gitlab -H bundle install --deployment --without development test mysql
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue