petl 0.1.0

Framework of piped ETL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
services:
  postgres:
    image: postgres:16-alpine
    container_name: petl-example-pg-db
    restart: no
    environment:
      POSTGRES_USER: postgres
      POSTGRES_PASSWORD: postgres
      POSTGRES_DB: postgres
    ports:
      - "5432:5432"
    volumes:
      - postgres_data:/var/lib/postgresql/data

volumes:
  postgres_data: