Hivatalos Python Docker kép használata: https://hub.docker.com/_/python
- Indítsunk el egy Python konténert, és futtassunk benne egy Python parancsot.
docker run python:3.11 python -c "print('Hello, Docker!')"
- 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