MeTA + metapy Docker Container for a consistent metapy build and use experience.
Dockerfile- Instructions for easy usage
Published artifacts from this repo can be found here: https://hub.docker.com/r/armhoeft/metapy-container
-
Download this image using Docker:
docker pull armhoeft/metapy-container:latest -
Run this container using Docker (default). This will run an interactive Python 3.9 session.
docker run --rm -it --name some-name armhoeft/metapy-container -
Run this container using Docker (custom). This will run an interactive Bash session, from which
pythonand other commands can be executed.docker run --rm -it --name some-name armhoeft/metapy-container /bin/bash -
Run a persisted copy of this container in the background (for continual use with environment changes persisted):
docker run -d --name some-name armhoeft/metapy-container tail -f /dev/nullTo interact wih this container, run:
docker exec -it some-name /bin/bash