feat: initial commit — OST to PST/MBOX converter with Docker support
Some checks failed
Build & Push Multi-Arch Image / build-and-push (push) Has been cancelled

This commit is contained in:
Simon Cloutier
2026-05-20 13:38:46 -04:00
commit cfee611fdc
17 changed files with 3311 additions and 0 deletions

17
docker-compose.yml Normal file
View File

@@ -0,0 +1,17 @@
services:
ost2pst:
# Use DOCKER_IMAGE env var to pull from Hub, or default to local build.
# Example: DOCKER_IMAGE=yourname/ost2pst:latest docker compose up -d
image: ${DOCKER_IMAGE:-ost2pst:latest}
build:
context: .
# Only used when building locally — skipped if image is pulled from Hub
container_name: ost2pst
ports:
- "${PORT:-3000}:3000"
volumes:
# Converted files land here on your host — easy access without docker cp
- ./converted:/app/converted
restart: unless-stopped
environment:
- NODE_ENV=production