mirror of
https://github.com/krislamo/graylog_demo
synced 2024-11-09 21:50:35 +00:00
Setup CentOS 7 Docker box
This commit is contained in:
commit
8a8417b991
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.vagrant
|
20
Vagrantfile
vendored
Normal file
20
Vagrantfile
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
# vi: set ft=ruby :
|
||||
|
||||
Vagrant.configure("2") do |config|
|
||||
config.vm.box = "centos/7"
|
||||
config.vm.provision "shell", inline: <<-SHELL
|
||||
|
||||
# Import GPG keys
|
||||
curl -s https://download.docker.com/linux/centos/gpg -o docker-key
|
||||
rpm --import docker-key /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
|
||||
|
||||
# Install Docker Community Edition
|
||||
yum-config-manager --add-repo \
|
||||
https://download.docker.com/linux/centos/docker-ce.repo
|
||||
yum install -y docker-ce docker-ce-cli containerd.io
|
||||
systemctl start docker
|
||||
usermod -aG docker vagrant
|
||||
|
||||
SHELL
|
||||
|
||||
end
|
Loading…
Reference in New Issue
Block a user