-
From project root,
run
docker build --tag pg_dumper:latest . -
List images
run
docker imagesto validate docker image exists with name pg_dumper with the latest tag -
To test running the image,
docker run pg_dumper:latest --versiondocker run pg_dumper:latest --helpdocker run pg_dumper:latest --input_file_name </path/to/file> --output_location </path/to/output/directory>
python3 -m venv .py-venv
To activate the environment run
source .py-venv/bin/activate
To deactivate the Virtual environment
run deactivate
python -m venv .py-venv
To activate the environment run
.py-venv\Scripts\activate.bat
To deactivate the Virtual environment
run deactivate
run python -m pip list
run python -m pip freeze > requirements.txt
