Ir al contenido principal

Entradas

Mostrando entradas de enero, 2020

El mito del patron Modelo Vista Controlador y sus mentiras

De código 💩 a código limpio 🦄

Docker Swarm caso práctico

Docker swarm

https://github.com/docker/labs/blob/master/beginner/chapters/votingapp.md

Docker para principiantes

https://docker-curriculum.com/ https://devconnected.com/docker-exec-command-with-examples/ https://github.com/docker/labs/blob/master/beginner/chapters/webapps.md

El club de código

Aprender rápidamente a desarrollar software

JavaScript for Beginners https://BeginnerJavaScript.com/friend... Javascript: The weird parts https://bit.ly/37lJ9in Advanced Javascript https://bit.ly/39vbIf8 Modern React with Redux https://bit.ly/2TBEDbI

Aprender varios lenguajes de programación

https://www.codecademy.com/

La necesidad de Docker

Docker

Detener apache2 de ubuntu sudo /etc/init.d/apache2 stop Ahora para entrar debemos escribir el siguiente comando, puedes usar el nombre que le pusiste a tu docker o también puedes usar el ID   docker exec -i -t 665b4a1e17b6 /bin/bash # o en su caso poner el nombre   Once you’re satisfied that your bulletin board container works correctly, delete it:   docker container rm --force bb     Now, let's launch a container in detached mode as shown below: $ docker run --name static-site -e AUTHOR= " Your Name " -d -P dockersamples/static-site e61d12292d69556eabe2a44c16cbd54486b2527e2ce4f95438e504afb7b02810 In the above command: -d will create a container with the process detached from our terminal -P will publish all the exposed container ports to random ports on the Docker host -e is how you pass environment variables to the container --name allows you to specify a container name AUTHOR is the environment variable name and Your Name is the val

DigitalOcean versus Amazon AWS