rustqueue 0.2.0

Background jobs without infrastructure — embeddable job queue with zero external dependencies
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
services:
  rustqueue:
    build: .
    ports:
      - "6790:6790"
      - "6789:6789"
    volumes:
      - rustqueue-data:/data
      - ./deploy/rustqueue.toml:/etc/rustqueue/rustqueue.toml:ro
    environment:
      - RUST_LOG=info
    restart: unless-stopped

volumes:
  rustqueue-data: