Skip to content

djfunksalot/jifetl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

about

Jump Into the Fire ETL (jifetl) automated https://en.wikipedia.org/wiki/Extract,_transform,_load

requirements

  • docker
  • node 8+
  1. install dependencies
cd <PROJECT_ROOT>
npm install
  1. create the network
docker network create jifetl
  1. create a configuration file
cp jifetcl_example.json jifetl.json
  1. initialized the database
tar -xzvf data.tgz
docker exec -it dbnode initdb.sh

notes

kill all containers

docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)

Delete all images

docker rmi $(docker images -q)