A self-hosted parcel tracker. Heavily inspired by ParcelPony.
- nodejs version
- docker & docker-compose
- track almost any courier in the world
- edit tracking?
- don't reload on "delete", just remove item from the list
- don't reload on on "add" - add item immediately, then reload in bg
- maybe add "force reload" option to invalidate cache?
- Register at trackinghive and get the API token (In Settings/API Keys)
Use this docker-compose.yml
:
---
version: '3.7'
services:
courier:
container_name: courier
image: tborychowski/courier
restart: unless-stopped
ports:
- "3000:3000"
environment:
- NODE_ENV=production
- TOKEN=<trackinghive token>
That's it! Now you can add & track your parcels from the web interface.