Deploy with Docker
Umo Office Convert can be deployed using Docker images (image artifacts are located in the docker/ directory). You can deploy Umo Office Convert with Docker and modify the Dockerfile in the project root directory as needed.
Deploying with Docker can simplify the deployment process, and is especially suitable for intranet deployments.
0. Preparation
Install Docker and sign in.
1. Build the Docker image
npm run build:dockerThe packaged Docker image is located at docker/umo-office-convert:latest. You can use this image to deploy on your local machine or on a server.
2. Load the Docker image
# Run in the project root directory
docker load -i ./docker/umo-office-convert.tar3. Start the container
# Run in the project root directory
docker run -d --name umo-office-convert -p 1236:1236 umo-office-convert:latest4. Verify container status
# Check container status
docker ps | grep umo-office-convert5. Access Umo Office Convert
Visit http://127.0.0.1:1236 in a browser to verify the service is running normally.