Vagrantfile #3

  • //
  • guest/
  • jen_bottom/
  • vagrant/
  • gitlab/
  • Vagrantfile
  • View
  • Commits
  • Open Download .zip Download (537 B)
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|

  config.vm.define 'gitlab' do |config|
    config.vm.hostname = 'gitlab'

    config.vm.box = "ubuntu/xenial64"
    config.vm.communicator = "ssh"
config.ssh.keys_only = true
#    config.vm.network :public_network
config.vm.network :private_network, ip: '172.16.100.12'

    config.vm.synced_folder '.', '/home/vagrant/hws'

    config.vm.provider 'virtualbox' do |vb|
      vb.memory = 4096
    end
  config.vm.provision "shell", path: "gitlab.sh"
  end
end
# Change User Description Committed
#3 25621 Jen Bottom Integrating sone fixes from dev to main
#2 22113 Jen Bottom Updating ssh settings for GitLab CM
#1 22106 Jen Bottom Submitting Vagrantfile and provision script for a VM runnin GitLab