Docker starter read

docker run -d -p 80:80 docker/getting-started

  • -d – run the container in detached mode (in the background)
  • -p 80:80 – map port 80 of the host to port 80 in the container
  • docker/getting-started – the image to use

Trabajando con un Dockerfile

docker build -t getting-started .

  • -t Final image
  • . dockerfile en el directorio

You can stop and remove a container in a single command by adding the «force» flag to the docker rm command. For example: docker rm -f <the-container-id>

Recopilación de Tutoriales para Rpi 3b

Aquí comparto algunos tutoriales que me han servido para configurar ciertos servicios en rpi 3 b con una distro raspbian basada e debian buster.

Para montar una usb https://geekytheory.com/tutorial-raspberry-pi-6-montar-usb-disco-duro

Cliente transmission https://www.atareao.es/tutorial/raspberry-pi-primeros-pasos/transmission-en-raspberry-pi/

VPN PPTP https://help.ubuntu.com/community/PPTPServer