Cerca
Heus ací els resultats de la cerca.
Noms de pàgina coincidents:
Resultats de text complet:
- vagrant tomcat (7/8) con JDK (7/8) @tech:vagrant:vagrantfile
- >docker run -d -p 9090:80 -v $PWD:/http tiagoad/nginx-index</code> == Vagrantfile <code yaml; Vagrantfile> Vagrant.configure("2") do |config| config.vm... m.provision "file", source: "tomcat.service", destination: "/tmp/tomcat.service" config.vm.provider... |v| v.name = "altrankas-tomcat7-JDK8" v.linked_clone = true v.memory = 2048 v.cpus =
- Singularity @tech:singularity
- = Singularity == .sif i cache <code bash>singularity pull hello-world.sif shub://vsoch/hello-world</code> <code bash>singularity cache list [-v]</code> == containers <code bash>singularity exec hello-world.sif /bin/echo He
- vagrant weblogic @tech:vagrant:vagrantfile
- 1.01" config.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.vm.
- vagrant mysql @tech:vagrant:vagrantfile
- >docker run -d -p 9090:80 -v $PWD:/http tiagoad/nginx-index</code> == con docker (problema sin resolver, la VM arranca bien el mysql la primera vez, pero no ... ysql5" config.vm.hostname = NAME config.vm.define NAME config.vm.network "private_network", ip:
- VAGRANT @tech:vagrant
- = VAGRANT {{tag>devops info}} ~~NOTOC~~ * [[tech:vagrant:vagrantfile]] * [[tech:vagrant:vagrantfil... [[https://www.vagrantup.com/docs/vagrantfile/machine_settings]] * vagrant_hosts -> ''sync_hosts'': [[https://www.rubydoc.info/gems/vagrant-hosts/2.6.2]] == config files *
- Google: operadores de búsqueda @tech:google
- /via: [[https://en.wikipedia.org/wiki/Google_hacking]] * /via: [[https://www.welivesecurity.com/la-es/2021/07/29/google-hacking-averigua-que-informacion-sobre-ti-o-empresa-aparece-resultados/]] * GHDB((Google Hacking DataBase)): [[https://www.exploit-db.com/google-
- terraform variables @tech:terraform
- { description = "AWS region" type = string default = "us-west-2" } variable "instance_count" { description = "Number of instances to provision." type = number default ... _gateway" { description = "Enable a VPN gateway in your VPC." type = bool default = f
- DOCKER @tech:docker
- = DOCKER {{tag>devops info}} == related {{topic>docker&nodate&nouser&sort&tags}} == +info * [[tech:docker:dockerd:start]] * [[tech:do... r:context]] * [[tech:docker:scan]] * Dev Containers: [[https://www.youtube.com/watch?v=DkKs29etRis... st/tu-contenedor-docker-podria-estar-muerto-y-tu-sin-enterarte/]] * [[https://tech.paulcz.net/blog/
- git tips @tech:git
- it merge * modo seguro:<code bash>git fetch origin git log --oneline main..origin/main git checkout main git log origin/main git merge origin/main</code> * [[https://www.at
- .git* @tech:git
- checkout s = status l = log --oneline --max-count=10 ll = log --pretty=format:... %cn]" --decorate --numstat lg = log --oneline --decorate --graph ls = log --pretty=for... --walk-reflogs --max-count=10 ai = add --interactive ss = status --short </code> <cod... amend -m dev = !git checkout dev && git pull origin dev staging = !git checkout staging && git pull
- terraform win-instance @tech:terraform
- = terraform win-instance == de interés * uso **key** para recuperar contraseña admin windows * asignación IP privada a dedo * IP p
- docker volumes @tech:docker
- { :tech:docker:pasted:20200327-151948.png }} * bind mount: montaje clásico con ''-v'' sobre una estr... ===docker volume * ''create'' * ''ls'' * ''inspect'' * ''rm'' === docker run * ''--volume | -v'' * ''[ volume_name | local_path | <nothing-for-anonymous-volume ] : path-in-container [ : [ ro ] ]'' * ''--mount | -m'' * ''type=[bind,vo
- master template @tech:vagrant:vagrantfile
- |config| hosts.each do |host| config.vm.define host['name'] do |node| node.vm.box = host[... le.playbook = pb['playbook'] ansible.inventory_path = pb['inventory'] ansible.version = host['ansible_local']['config']['version'] ansible.install_mode = host['ansible_local']['config']['mode
- docker-compose casos de uso @tech:docker:docker-compose
- ose casos de uso = docker-compose == mariadb + adminer <code yaml docker-compose.yml> version: '3.9' ... r/lib/mysql env_file: - db.env container_name: mariadb adminer: image: adminer restart: unless-stopped ports: - 8080:8080 </code> <code proper
- Dockerfile run script @tech:docker:dockerfile:examples
- ob/master/run.sh]] == destacable <sxh bash> for i in /scripts/pre-init.d/*sh do if [ -e "${i}" ]; then echo "[i] pre-init.d - processing $i" . "${i}" fi done </sxh> == completo <code bash> #!/bin