Last active
April 2, 2020 13:54
-
-
Save elcascarudo-dev/63c4513d1f61d79d7c6bde3d9541b4d6 to your computer and use it in GitHub Desktop.
Crear imagen Docker en base a un Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Genera imagen :latest | |
docker build -t "{usuario/nombre-de-la-imagen}" . | |
## Genera imagen con número de versión | |
docker build -t "{usuario/nombre-de-la-imagen:0.0.1}" . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment