Skip to content

2Kelvin/dockerized-data-processor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Containerized Data Processor

Docker containerized program that processes a CSV file and outputs the result in a text file that a user can access in the host OS.

Building image:

docker build -t rocketman02/csv-processor-python:v1 .

Running container:

docker run --rm --mount type=bind,source=$HOME/docker-containers-volumes-data/csv-program,target=/csv-processor/data-files rocketman02/csv-processor-python:v1

Used bind mount to mount and bind a host folder $HOME/docker-containers-volumes-data/csv-program to the /csv-processor/data-files container folder. This way the program running in the container could access and fetch the csv file located in the user's pc and the user could get the output file that the program spits out after processing the csv file.

About

Docker containerized program that processes a CSV file and outputs a result

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors