Skip to content

Instantly share code, notes, and snippets.

@mhogerheijde
Created September 9, 2017 17:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mhogerheijde/0cadd625d28e76fef235dd625e49ad5c to your computer and use it in GitHub Desktop.
Save mhogerheijde/0cadd625d28e76fef235dd625e49ad5c to your computer and use it in GitHub Desktop.
Vagrantfile to create a target host to install AWX on.
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/xenial64"
config.vm.network "private_network", ip: "192.168.33.10"
config.vm.provision "shell", inline: <<-SHELL
apt-get update
apt-get install -y python python-pip
pip install docker-py
SHELL
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment