batch-processing 0.1.17

A batch library for processing a list of items in parallel
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
services:
  postgres:
    container_name: postgres
    image: postgres
    volumes:
      - postgres-data-batch:/var/lib/postgresql/data
    environment:
      POSTGRES_PASSWORD: "postgres"
      POSTGRES_USER: "postgres"
    ports:
      - "5432:5432"
    expose:
      - "5432"

volumes:
  postgres-data-batch:
    name: postgres-data-batch