Configurar límites de contenedores docker

Sobre todo en Arch y derivadas, suele traer problemas (sobre todo mysql) si no configuramos ensudo nano /lib/systemd/system/containerd.serviceLimitNOFILE=infinity cambiarlo a LimitNOFILE=1048576 Luego reiniciamos el servicio consudo systemctl daemon-reload && sudo…

Continuar leyendoConfigurar límites de contenedores docker

Si obtenemos el error “[ERROR] [Entrypoint]: mysqld failed while attempting to check config” al desplegar una imagen mysql con docker

Puede deberse a la configuración de containerd. En Manjaro lo solucioné reemplazando lo siguiente: sudo nano /lib/systemd/system/containerd.service ---------- # LimitNOFILE=infinity LimitNOFILE=1048576 ---------- systemctl daemon-reload sudo systemctl restart containerd docker ps…

Continuar leyendoSi obtenemos el error “[ERROR] [Entrypoint]: mysqld failed while attempting to check config” al desplegar una imagen mysql con docker

Docker swarm

  • Autor de la entrada:
  • Categoría de la entrada:Docker
  • Comentarios de la entrada:0 comentarios

Crear cluster: docker swarm init Obtener token para unir MANAGER docker swarm join-token manager Obtener token para unir WORKER docker swarm join-token worker

Continuar leyendoDocker swarm

Iniciar servicio Syncthing al inicio

Crear el archivo ~/.config/autostart/syncthing-start.desktop con el siguiente contenido: [Desktop Entry] Name=Start Syncthing GenericName=File synchronization Comment=Starts the main syncthing process in the background. Exec=/usr/bin/syncthing serve --no-browser --logfile=default Icon=syncthing Terminal=false Type=Application Keywords=synchronization;daemon;…

Continuar leyendoIniciar servicio Syncthing al inicio