- Docker Desktop (or Docker Engine + Docker Compose v2)
- Ports 3000 and 8000 free on your machine
1. Create a folder and open a terminal there:
mkdir -p ~/postman-data-copy-utility
cd ~/postman-data-copy-utility2. Create docker-compose.yml with this content:
services:
frontend:
image: ghcr.io/postman-solutions-eng/postman-data-copy-utility-app/frontend:latest
ports:
- "3000:3000"
depends_on:
- backend
backend:
image: ghcr.io/postman-solutions-eng/postman-data-copy-utility-app/server:latest
ports:
- "8000:8000"
environment:
- NODE_ENV=production
restart: always3. Start the app:
docker compose pull
docker compose up -d4. Open http://localhost:3000 in your browser.
docker compose down
docker compose pull && docker compose up -d- Destination team must be an Enterprise team.
- Mocks and monitors must be migrated with their collections.
- Non-REST collections may not copy fully via the Postman API.
- APIs with versions cannot be copied.
- Workspace memberships are not preserved.