Install TimeTrex in PHP Docker image

This commit is contained in:
2022-06-12 01:30:09 -04:00
commit 9b26eabb7c
5 changed files with 82 additions and 0 deletions

12
Vagrantfile vendored Normal file
View 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