Skip to content

Instantly share code, notes, and snippets.

@atodev
Last active June 14, 2025 17:34
Show Gist options
  • Save atodev/bb5ac999d827114fc4cfa7f946c5db0c to your computer and use it in GitHub Desktop.
Save atodev/bb5ac999d827114fc4cfa7f946c5db0c to your computer and use it in GitHub Desktop.
Docker
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