The official DS Server Docker image is available on Docker Hub at txtextcontrol/dsserver-core. It offers a streamlined solution for deploying TX Text Control DS Server in containerized environments. It facilitates the integration of document editing, PDF generation, and electronic signature functionalities into applications on various platforms.
Before deploying the DS Server Docker image, ensure the following:
To pull the official DS Server Docker image, run the following command in your terminal:
docker pull txtextcontrol/dsserver-core:latest
This command downloads the latest version of the DS Server image from Docker Hub. You can also specify a specific version by replacing latest
with the desired version tag.
To run the DS Server container, use the following command:
docker run -d -p 5000:5000 --name dsserver txtextcontrol/dsserver-core:latest
This command starts the DS Server container in detached mode, mapping port 5000 of the host to port 5000 of the container. You can access the DS Server API at http://localhost:5000
.
After starting the container, you can access the DS Server Portal by navigating to http://localhost:5000
in your web browser. Use the default credentials (admin/admin) to log in.