Práctica 1 (8/9)
#
Orden el día- Orden del día
- Presentaciones
- qué es docker
- Cómo instalarlo
- Introducción al tooling
- jdk
- maven
- dependencias
- lifecycle
- configuración
- generadores
- jflex
- bison
- antlr
- Introducción a la IDE
- atajos de teclado (Ctrl+P, Ctrl+Shift+P)
- devcontainers
- integración con maven
- Introducción al sitio
- soporte técnico
#
Intro a dockerdocker run ubuntu echo holadocker run -it ubuntu bashdocker ps # al mismo tiempopython --versiondocker run -it --rm python pythondocker run -it --rm python:2.7 pythondocker run -it --rm ubuntu bashdocker run -it --rm -v (pwd)/docs:/afuera ubuntu bash # hacer algún touch y que se vea en el vscodevim -vdocker run -it --rm -v (pwd)/docs:/afuera ubuntu bash # apt update; apt install vim; vim --version