Cerca

Heus ací els resultats de la cerca.

vagrant mysql @tech:vagrant:vagrantfile
70 Resultats, Darrera modificació:
antfile}} los ficheros necesarios se han servido desde un pequeño contenedor (por restricciones de licencia o firewall), <code bash>docker run -d -p 9090:80 -v $PWD:/http tiagoad/nginx-index</code> =
master template @tech:vagrant:vagrantfile
65 Resultats, Darrera modificació:
grantfile}} == master (DSP) * la configuración de las VM está en fichero separado <sxh ruby; highl... do |config| hosts.each do |host| config.vm.define host['name'] do |node| node.vm.box = host['box'] node.vm.hostname = host['hostname'] node.vm.network :pri
VAGRANT
44 Resultats, Darrera modificació:
= VAGRANT {{tag>devops info}} ~~NOTOC~~ * [[tech:vagrant:vagrantfile]] * [[tech:vagrant:vagrantfil... imágenes (box) * ''vagrant box add <imagen>'': descargar * alternativamente, descarga manual: ''wget https://app.vagrantup.com/<USER>/boxes/<BOX>/versions/<VERSION>/providers/<PROVEEDOR>.box'' * ''vagrant box list'': lis
vagrant tomcat (7/8) con JDK (7/8) @tech:vagrant:vagrantfile
36 Resultats, Darrera modificació:
antfile}} los ficheros necesarios se han servido desde un pequeño contenedor (por restricciones de licencia o firewall), <code bash>docker run -d -p 9090:80 -v $PWD:/http tiagoad/nginx-index</code> =
vagrantfile
18 Resultats, Darrera modificació:
ox a usar: **config.vm.box** * config.vm.box="debian/bullseye64" * versión de la box a usar: **config.vm.box_version** * config.vm.box_version="11.20211230.1" * dirección URL de la box: **config.vm.box_url** * config.vm.box_url="https://app.vagrantup.com/debian/boxes/bullseye64" === hostname === provision
3 nodos vagrant + docker @tech:vagrant:vagrantfile
17 Resultats, Darrera modificació:
3 nodos vagrant + docker {{tag>Vagrantfile}} la idea es desplegar un cluster swarm <sxh ruby; title: 3 nodos vagrant> Vagrant.configure("2") do |config| config.vm.define "nodo1" do |nodo1| nodo1.vm.box = "debian/jessie64" nodo1.vm.hostname = "nodo1" # n
vagrant weblogic @tech:vagrant:vagrantfile
16 Resultats, Darrera modificació:
= vagrant weblogic {{tag>Vagrantfile}} == 12 <code yaml; Vagrantfile> Vagrant.configure("2") do |config| config.vm.box = "peru/ubuntu-18.04-desktop-amd64" config.vm.box_version = "20190401.0... fig.vm.provision "file", source: "./orainst.loc", destination: "/tmp/orainst.loc" config.vm.provision "file", source: "./12c_repository_file.xml", destination: "/tmp/12c_repository_file.xml" config
vagrant php @tech:vagrant:vagrantfile
15 Resultats, Darrera modificació:
= vagrant php {{tag>Vagrantfile}} == php5 <code yaml; Vagrantfile> Vagrant.configure("2") do |config| config.vm.box = "peru/ubuntu-18.04-desktop-amd64" config.vm.box_version = "20190401.0... rovision "file", source: "../../common/info.php", destination: "/tmp/info.php" config.vm.provider :virtualbox do |v| v.name = "altrankas-apache-php
vagrantfile examples
13 Resultats, Darrera modificació:
'' - subir (versión, proveedor, etc...) - descargar (desde otro Vagrantfile):<code yaml; Vagrantfile></code> == ejemplos === configuraciones simples <sxh rub
Vagrantfile: multi-machine cluster in a loop @tech:vagrant:vagrantfile
10 Resultats, Darrera modificació:
machine cluster in a loop {{tag>Vagrantfile}} <code ruby> # -*- mode: ruby -*- # vi: set ft=ruby : VAGRANTFILE_API_VERSION = "2" cluster = { "master"... E_API_VERSION) do |config| cluster.each_with_index do |(hostname, info), index| config.vm.define hostname do |cfg| cfg.vm.provider :virtualb
vagrant + docker + ngnix @tech:vagrant:vagrantfile
7 Resultats, Darrera modificació:
ix {{tag>Vagrantfile}} <sxh ruby; title: vagrant despliega docker, falta ./data> Vagrant.configure(2) do |config| config.vm.box = "debian/jessie64" config.vm.hostname = "debivan" config.vm.network "forwarded_port", guest: 80, host: 1080 config.vm.network "public_networ
vagrant + docker @tech:vagrant:vagrantfile
6 Resultats, Darrera modificació:
= vagrant + docker {{tag>Vagrantfile}} <code ruby; vagrantfile>Vagrant.configure(2) do |config| config.vm.box = "debian/bullseye64" config.vm.hostname = "dockerd-tls" config.vm.network "forwarded_port", guest: 80, host: 1080 config.vm.network... work", ip: "192.168.100.10" config.vm.synced_folder "./data","/vagrant" config.vm.provision "docke