Install TimeTrex in PHP Docker image
This commit is contained in:
12
Vagrantfile
vendored
Normal file
12
Vagrantfile
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
Vagrant.configure("2") do |config|
|
||||
config.vm.box = "debian/bullseye64"
|
||||
config.vm.network "forwarded_port", guest: 8080, host: 8080
|
||||
config.vm.provision "shell", inline: <<-EOF
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
apt-get update
|
||||
apt-get install -y docker.io docker-compose
|
||||
usermod -aG docker vagrant
|
||||
cd /vagrant
|
||||
docker-compose up -d --build
|
||||
EOF
|
||||
end
|
Reference in New Issue
Block a user