Encapsulado y aprovisionamiento de una app en Vagrant
De Wiki de EGC
Revisión del 17:16 2 dic 2020 de Jagalindo (discusión | contribuciones) (Página creada con «Creamos un Vagrantfile, podeis ver el código en [aquí https://github.com/EGCETSII/1920-Practica-1] <syntaxhighlight lang="bash" line='line'> Vagrant.configure("2") do |c...»)
Creamos un Vagrantfile, podeis ver el código en [aquí https://github.com/EGCETSII/1920-Practica-1]
1 Vagrant.configure("2") do |config|
2 config.vm.box = "ubuntu/bionic64"
3 config.vm.network "forwarded_port", guest: 80, host: 8080
4 config.vm.provision "shell", path: 'provision.sh'
5 end
Creamos nuestra format de aprovisionar (de momento con un script bash)
1 sudo apt update
2 sudo apt upgrade -y
3 sudo apt install -y git python3 python3-pip screen
4 git clone https://github.com/EGCETSII/1920-Practica-1.git
5 cd 1920-Practica-1
6 pip3 install -r requirements.txt
7 screen -m -d python3 holamundo.py
Levantamos nuestra máquina
1 vagrant up