Files
ost2pst/docker-compose.yml
Simon Cloutier cfee611fdc
Some checks failed
Build & Push Multi-Arch Image / build-and-push (push) Has been cancelled
feat: initial commit — OST to PST/MBOX converter with Docker support
2026-05-20 13:38:46 -04:00

18 lines
591 B
YAML

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