mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
moved git dependency to Vagrantfile
This commit is contained in:
1
Makefile
1
Makefile
@@ -19,7 +19,6 @@ plugins: pluginhook docker
|
||||
dependencies: gitreceive sshcommand pluginhook docker stack
|
||||
|
||||
gitreceive:
|
||||
apt-get -y install git
|
||||
wget -qO /usr/local/bin/gitreceive ${GITRECEIVE_URL}
|
||||
chmod +x /usr/local/bin/gitreceive
|
||||
test -f /home/git/receiver || gitreceive init
|
||||
|
||||
2
Vagrantfile
vendored
2
Vagrantfile
vendored
@@ -10,7 +10,7 @@ Vagrant::configure("2") do |config|
|
||||
config.vm.box = BOX_NAME
|
||||
config.vm.box_url = BOX_URI
|
||||
config.vm.synced_folder File.dirname(__FILE__), "/root/dokku"
|
||||
config.vm.provision :shell, :inline => "cd /root/dokku && make all"
|
||||
config.vm.provision :shell, :inline => "apt-get -y install git && cd /root/dokku && make all"
|
||||
config.vm.network :forwarded_port, guest: 80, host: 8080
|
||||
config.vm.hostname = "#{DOKKU_DOMAIN}"
|
||||
config.vm.network :private_network, ip: DOKKU_IP
|
||||
|
||||
Reference in New Issue
Block a user