-
-
Save atodev/bb5ac999d827114fc4cfa7f946c5db0c to your computer and use it in GitHub Desktop.
Docker
This file contains hidden or 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
| docker pull python:3-slim-bullseye | |
| -- downloads it and runs it | |
| docker run -it python:3-slim-bullseye | |
| --- exit | |
| exit() | |
| -- to run again | |
| docker run -it python:3-slim-bullseye | |
| -- latest system | |
| docker run -it node | |
| --build a docke from dockerfile | |
| docker build -f Dockerfile -t pyapp . | |
| --run it with interactive terminal | |
| docker run -it pyapp | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment