Cerca

Heus ací els resultats de la cerca.

VAGRANT @tech:vagrant
11 Resultats, Darrera modificació:
devops info}} ~~NOTOC~~ * [[tech:vagrant:vagrantfile]] * [[tech:vagrant:vagrantfile-examples]] == related {{topic>vagrant&nouser&nodate&tags}} == help * [[https://www.vagrantup.com/docs/vagrantfile/machine_settings]] * vagrant_hosts -> ''sync_ho... nfig.vm : [[https://www.vagrantup.com/docs/vagrantfile/machine_settings.html]] * provision docker : [[
dockerd remote tls access @tech:docker:dockerd
11 Resultats, Darrera modificació:
- generar direcciones y atributos:<code bash; extfile.cnf>echo subjectAltName = DNS:<FQDN>DNS:$HOST,IP:10.10.10.20,IP:127.0.0.1 >> extfile.cnf echo extendedKeyUsage = serverAuth >> extfile.cnf</code> * por FQDN y por $HOST (por si acaso) ... -key.pem -CAcreateserial -out server-cert.pem -extfile extfile.cnf </code> - generar KEY cliente + CSR
vagrant weblogic @tech:vagrant:vagrantfile
11 Resultats, Darrera modificació:
= vagrant weblogic {{tag>Vagrantfile}} == 12 <code yaml; Vagrantfile> Vagrant.configure("2") do |config| config.vm.box = "peru/ubuntu-18.... ox_version = "20190401.01" config.vm.provision "file", source: "./orainst.loc", destination: "/tmp/orainst.loc" config.vm.provision "file", source: "./12c_repository_file.xml", destinatio
vagrant mysql @tech:vagrant:vagrantfile
10 Resultats, Darrera modificació:
= vagrant mysql {{tag>Vagrantfile}} los ficheros necesarios se han servido desde un pequeño contenedor ... vez, pero no las posteriores) <code yaml; Vagrantfile> IP = '192.168.1.20' VERSION = '5.5' NAME = "mysq... arado para depender del nginx. <code yaml; Vagrantfile> Vagrant.configure("2") do |config| config.vm.b... ox_version = "20190401.01" config.vm.provision "file", source: "../../common/addroot.sql", destination
git tips @tech:git
9 Resultats, Darrera modificació:
fichero > git checkout <COMMIT|HEAD|HEAD^> <path_file> </code> <code bash (ohshitgit) recuperar un fic... a su hash git checkout [hash guardado] -- path/to/file # la version anterior del archivo estará en tu in... traza cambios a fichero> git log --follow -p -- <FILE> git log --stat <FILE> </code> * https://git-scm.com/docs/git-log <code bash>git whatchanged [<FILE>
master template @tech:vagrant:vagrantfile
9 Resultats, Darrera modificació:
= master template {{tag>Vagrantfile}} == master (DSP) * la configuración de las VM está en fichero se... rado <sxh ruby; highlight:[13-14]; title: Vagrantfile> API_VERSION = '2' VMS_FILE_PATH = 'vagrant/vms.yml' hosts = YAML.load_file(VMS_FILE_PATH) Vagrant.configure(API_VERSION) do |con
Dockerfile run script @tech:docker:dockerfile:examples
9 Resultats, Darrera modificació:
= Dockerfile run script {{tag>dockerfile}} /via:[[https://github.com/chio-nzgft/docker-MariaDB-with-SSL/blob/master/... MYSQL_PASSWORD=${MYSQL_PASSWORD:-""} tfile=`mktemp` if [ ! -f "$tfile" ]; then return 1 fi cat << EOF > $tfil
Dockerfile @tech:docker
7 Resultats, Darrera modificació:
= Dockerfile * [[https://docs.docker.com/develop/develop-images/dockerfile_best-practices/]] * mirar: [[https://runnable.com/blog/9-common-dockerfile-mistakes]] == nombre contenedores * [a-zA-Z0-9... ect-changes]] * ejecución de comando en **Dockerfile**:<code ruby> ENV TZ 'Europe/Andorra' RUN
terraform win-instance @tech:terraform
5 Resultats, Darrera modificació:
ic_key_openssh}" } resource "aws_iam_instance_profile" "instance_profile_adwriter" { name = "INSTANCE_PROFILE_ADWRITER" role = "${aws_iam_role.iam_role_adwriter.name}" } r... e = "${rsadecrypt(aws_instance.foo.password_data, file("${path.cwd}/ec2_foo.key"))}" } output "Private
vagrantfile examples @tech:vagrant
5 Resultats, Darrera modificació:
= vagrantfile examples {{NEWPAGE>tech:vagrant:vagrantfile}} {{topic>Vagrantfile&nodate&nouser&sort&tags}} == vagrant box * crear una box en Vagrant: - ''... eedor, etc...) - descargar (desde otro Vagrantfile):<code yaml; Vagrantfile></code> == ejemplos =
vagrant tomcat (7/8) con JDK (7/8) @tech:vagrant:vagrantfile
5 Resultats, Darrera modificació:
= vagrant tomcat (7/8) con JDK (7/8) {{tag>Vagrantfile}} los ficheros necesarios se han servido desde u... $PWD:/http tiagoad/nginx-index</code> == Vagrantfile <code yaml; Vagrantfile> Vagrant.configure("2") do |config| config.vm.box = "peru/ubuntu-18.04-deskto... ox_version = "20190401.01" config.vm.provision "file", source: "tomcat.service", destination: "/tmp/to
Dockerfile mariadb + SSL @tech:docker:dockerfile:examples
5 Resultats, Darrera modificació:
= Dockerfile mariadb + SSL {{tag>dockerfile}} === Dockerfile <code ruby; Dockerfile> FROM mariadb:latest ADD --chown=mysql:root ./data/certs/server-key.pem /etc/my
DOCKER @tech:docker
4 Resultats, Darrera modificació:
ch:docker:dockerd:start]] * [[tech:docker:dockerfile]] * [[tech:docker:docker-compose:start]] * [[... /]] * [[https://docs.docker.com/compose/compose-file/#volumes]] === casos de uso * [[tech:docker:do... r.com/_/nextcloud/]] * vsftpd : [[https://dockerfile.readthedocs.io/en/latest/content/DockerImages/doc... ub.com/dreamhost/docker-autossh/blob/master/Dockerfile]] * VPN * [[https://hub.docker.com/r/hwdsl2
terraform variables @tech:terraform
4 Resultats, Darrera modificació:
ro en el cli * en fichero específico ''-var-file="<FILE.TFVARS>"'' * en el propio comando ''-var "server=web"'' * en estos ficheros solo se re... o.tfvars, alfabéticamente - ''-var'' o ''-var-file'' == output como valores de retorno de un módulo... put [ [-j-son] [-no-color] [-state=<path_to_state_file>] ] <NOMBRE> * ''-state'' se ignora si se t
vagrantfile @tech:vagrant
4 Resultats, Darrera modificació:
= vagrantfile * provisioning: [[https://www.vagrantup.com/docs/provisioning]] == Vagrant.configure("2"... amespace: [[https://www.vagrantup.com/docs/vagrantfile/machine_settings#machine-settings]] === box * b... ionar (para info) * **type**: * shell * file * **after**: (experimental) * [[https://www... end</code> * <code>config.vm.provision [name] :file, path: "bootstrap.sh"</code> === network === syn
Vagrantfile: multi-machine cluster in a loop @tech:vagrant:vagrantfile
4 Resultats, Darrera modificació:
docker scan @tech:docker
3 Resultats, Darrera modificació:
Singularity @tech:singularity
3 Resultats, Darrera modificació:
casos de uso @tech:terraform
3 Resultats, Darrera modificació:
docker-compose casos de uso @tech:docker:docker-compose
3 Resultats, Darrera modificació:
docker-compose @tech:docker:docker-compose
3 Resultats, Darrera modificació:
vagrant php @tech:vagrant:vagrantfile
3 Resultats, Darrera modificació:
docker TLS (OLD) @tech:docker
2 Resultats, Darrera modificació:
Anotaciones curso GIT @tech:git
2 Resultats, Darrera modificació:
Terraform cli @tech:terraform
2 Resultats, Darrera modificació:
TERRAFORM @tech:terraform
2 Resultats, Darrera modificació:
vagrant + docker @tech:vagrant:vagrantfile
2 Resultats, Darrera modificació:
docker run @tech:docker
1 Resultats, Darrera modificació:
git DIFF @tech:git
1 Resultats, Darrera modificació:
git LFS @tech:git
1 Resultats, Darrera modificació:
git repo server @tech:git
1 Resultats, Darrera modificació:
3 nodos vagrant + docker @tech:vagrant:vagrantfile
1 Resultats, Darrera modificació:
vagrant + docker + ngnix @tech:vagrant:vagrantfile
1 Resultats, Darrera modificació: