al

Cerca

Heus ací els resultats de la cerca.

terraform variables @tech:terraform
9 Resultats, Darrera modificació:
resource_tags" { description = "Tags to set for all resources" type = map(string) default = { project = "project-alpha", environment = "dev" } } </code> uso: ... _count #tags = { # project = "project-alpha", # environment = "dev" #} tags = va... resource_tags" { description = "Tags to set for all resources" type = map(string) default
.git* @tech:git
8 Resultats, Darrera modificació:
itconfig * ''~/.gitconfig'': <code properties> [alias] ck = checkout s = status ... d%d\\ %Creset%s%Cblue\\ [%cn]" --decorate alias = ! git config --get-regexp ^alias\\. | sed -e s/^alias\\.// -e s/\\ /\\ =\\ / a = add b = branch c = commit
DOCKER @tech:docker
6 Resultats, Darrera modificació:
ar/run/docker.sock:/var/run/docker.sock:ro --pull=always mrjackwills/oxker</code> * LazyDocker:<code... omandos === instalación * añadir usuario actual al grupo de docker y poder usarlo al instante: ''sudo usermod -aG docker $(whoami) && newgrp docker'' =... ''docker info'' * ''docker ps'' * ''-a'' : all * ''-q'' : only ID * ''-f <filter>'' : '
portainer @tech:docker
5 Resultats, Darrera modificació:
image: portainer/portainer-ee:2.40.0 restart: always network_mode: host volumes: - /... : image: portainer/agent:sts restart: always networks: portainer_agent_net: ... container_name: portainer-agent restart: always volumes: - /var/run/docker.sock:/va... : image: portainer/agent:sts restart: always networks: portainer_agent_net:
git alias @tech:git
5 Resultats, Darrera modificació:
= git alias * [[https://git-scm.com/book/en/v2/Git-Basics-Git-Aliases]] == alias * <code bash>git config --global alias.cm ‘-c “user.name=matebcn” commit’</code> /via: [[https:/
Google: operadores de búsqueda @tech:google
5 Resultats, Darrera modificació:
texto del sitio web solamente === in title * **allintitle:** * **intitle:** Buscar en el título d... a * **inblogtitle:** * **inposttitle:** * **allinpostauthor:** * **allintext:** * **allinarchor:** === in link * **link:** : <URL> sitios que apuntan a tu <URL> * *
Dockerfile run script @tech:docker:dockerfile:examples
5 Resultats, Darrera modificació:
-d "/run/mysqld" ]; then echo "[i] mysqld already present, skipping creation" chown -R... l/mysql ]; then echo "[i] MySQL directory already present, skipping creation" chown -R... < EOF > $tfile USE mysql; FLUSH PRIVILEGES; GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' identified by '$MYSQL_ROOT_PASSWORD' WITH GRANT OPTION; GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' identifi
git FETCH @tech:git
4 Resultats, Darrera modificació:
minal te dará información visual inmediata si hay algo nuevo. `git fetch` es como asomarse a la venta... go todavía). --- ## 1. Qué verás en la terminal al ejecutar `git fetch` Si hay cambios en el servidor, la salida de la terminal se verá algo así: ```bash remote: Enumerating objects: 5, d... ndo:** Significa que tu repositorio local ya está al día con el servidor. --- ## 2. La "Notificación
git filter-repo @tech:git
4 Resultats, Darrera modificació:
a actual): <code bash> git clone --no-local /ruta/al/repo_original repo-subdirectorio cd repo-subdirec... egúrate de que los objetos LFS también se migren. Al usar `git-filter-repo`, el historial de LFS suele... enerse, pero tendrás que hacer un `git lfs push --all` al nuevo Gitea. * **Limpieza en el origen:** Una vez que el nuevo repositorio sea independiente y
git repo server @tech:git
4 Resultats, Darrera modificació:
Match User git ForceCommand /usr/bin/git AllowTCPForwarding no X11Forwarding no </code> ... om/questions/489771/block-git-user-from-login-but-allow-the-user-to-still-function-as-a-git-repo]] ==... e source to local branches of the target, it maps all refs (including remote-tracking branches, notes ... c.) and sets up a refspec configuration such that all these refs are overwritten by a git remote updat
dockerd remote tls access @tech:docker:dockerd
4 Resultats, Darrera modificació:
edan conectarse * nos permite limitar el acceso al **dockerd** local y además es el paso previo a pe... pem</code> * el **Common Name** ha de apuntar al FQDN de la máquina - crear key y CSR:<code bash... si acaso) * **IP:** solo si es necesario más allá de 127.0.0.1 - generar el certificado firmado... cert.pem cert.pem</code> === dockerd - decirle al dockerd que solo acepete conexiónes "seguras":<co
.git* - .gitattributes @tech:git:dotfiles
4 Resultats, Darrera modificació:
hacer si dos personas modifican el mismo archivo al mismo tiempo. * Los archivos binarios no se p... e. Le dice a Git que debe usar el "filtro" de LFS al mover archivos entre el disco y el área de preparación (staging). * Al hacer commit: El filtro intercepta el archivo, lo... eño archivo de texto (puntero) en su lugar. * Al hacer checkout: El filtro busca el archivo real e
vagrant mysql @tech:vagrant:vagrantfile
4 Resultats, Darrera modificació:
ant.configure("2") do |config| config.vm.box = "altrankas/mysql5" config.vm.hostname = NAME conf... nfig.vm.provider :virtualbox do |v| v.name = "altrankas-mysql-5.5" v.linked_clone = true v... nfig.vm.provider :virtualbox do |v| v.name = "altrankas-mysql-5.7" v.linked_clone = true v... EATE USER 'root'@'%' IDENTIFIED BY 'admin'; GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' WITH GRANT OPTIO
Anotaciones curso GIT @tech:git
3 Resultats, Darrera modificació:
ig --global core.editor * git config --global alias.unstage 'reset HEAD ~' * git config --global alias.last 'log -1 HEAD' * git rm [-f][--cached] ... etty][--online][-n][--since][--until][--author][--all-match][-S] * online, short, full, fuller, fo
git LFS @tech:git
3 Resultats, Darrera modificació:
a todos los repos de la sesión, con --local solo al actual</code> * configuración:<code bash>git lf... e texto de ~3 líneas con el hash sha256), pero el almacenamiento de Gitea no contiene los objetos bina... objetos LFS:<code bash>git lfs push nuevo-gitea --all</code> == migración a LFS En caso de querer mig
terraform win-instance @tech:terraform
3 Resultats, Darrera modificació:
vagrantfile @tech:vagrant
3 Resultats, Darrera modificació:
Dockerfile mariadb + SSL @tech:docker:dockerfile:examples
3 Resultats, Darrera modificació:
docker TLS (OLD) @tech:docker
2 Resultats, Darrera modificació:
docker volumes @tech:docker
2 Resultats, Darrera modificació:
git: fusion varios repos en 1 conservando historia @tech:git
2 Resultats, Darrera modificació:
git MERGE @tech:git
2 Resultats, Darrera modificació:
git TAG @tech:git
2 Resultats, Darrera modificació:
IA @tech:ia
2 Resultats, Darrera modificació:
regexp (regular expression) @tech:regexp
2 Resultats, Darrera modificació:
Singularity @tech:singularity
2 Resultats, Darrera modificació:
POC estructura AD @tech:terraform
2 Resultats, Darrera modificació:
Terraform state @tech:terraform
2 Resultats, Darrera modificació:
VAGRANT @tech:vagrant
2 Resultats, Darrera modificació:
docker-compose casos de uso @tech:docker:docker-compose
2 Resultats, Darrera modificació:
master template @tech:vagrant:vagrantfile
2 Resultats, Darrera modificació:
vagrant tomcat (7/8) con JDK (7/8) @tech:vagrant:vagrantfile
2 Resultats, Darrera modificació:
docker swarm: official guide @tech:dockerswarm
1 Resultats, Darrera modificació:
git config @tech:git
1 Resultats, Darrera modificació:
git REBASE @tech:git
1 Resultats, Darrera modificació:
git "rejected" @tech:git
1 Resultats, Darrera modificació:
Crear repositorio de solo lectura (para algunos) @tech:git
1 Resultats, Darrera modificació:
git REVERT @tech:git
1 Resultats, Darrera modificació:
git tips @tech:git
1 Resultats, Darrera modificació:
istio @tech:istio
1 Resultats, Darrera modificació:
terraform AWS @tech:terraform
1 Resultats, Darrera modificació:
docker-compose @tech:docker:docker-compose
1 Resultats, Darrera modificació:
git, sacar archivos del indice git (.gitignore) @tech:git:dotfiles
1 Resultats, Darrera modificació:
kubernetes events @tech:k8s:cli
1 Resultats, Darrera modificació:
vagrant php @tech:vagrant:vagrantfile
1 Resultats, Darrera modificació:
vagrant weblogic @tech:vagrant:vagrantfile
1 Resultats, Darrera modificació: