Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 512 Bytes

README.md

File metadata and controls

37 lines (25 loc) · 512 Bytes

Alap Docker példa

Hivatalos Python Docker kép használata: https://hub.docker.com/_/python

  1. Indítsunk el egy Python konténert, és futtassunk benne egy Python parancsot.
docker run python:3.11 python -c "print('Hello, Docker!')"
  1. Lépjünk be a konténerbe, és futtassunk egy Python parancsot.
docker run -it python:3.11 bash
python --version
python
print('A Docker konténerben vagyok!')
exit()
exit