Introducing our new CEO Don Johnson - Read More

latchudevops/pcsimage2022-awscli

By latchudevops

Updated 4 months ago

To deploy a PCS on Windows Server Core

Image
Web Servers
0

41

To run a Sparx ProCloud Server on Windows Server Core Container

A Docker image for running PCS application, a scalable application built to run on Windows containers.

Pull the Image

To pull the latest version of the image, run:

docker pull yourdockerhubusername/pcsimage:latest

Run the Container

Run the application with the following command:

docker run -d --name pcscontainer -p 1804:1804 yourdockerhubusername/pcsimage:latest

This will:

  • Run the container in detached mode.

  • Map port 1804 on the host to 1804 inside the container.

Customization

You can pass additional environment variables, volume mounts, or custom configurations to the container.

Example with an environment variable and volume:
docker run -d --name pcscontainer \
  -p 1804:1804 \
  -e "PCS_ENV=production" \
  -v /host/path:/container/path \
  yourdockerhubusername/pcsimage:latest

Contributing

We welcome contributions! Please open an issue or submit a pull request on our GitHub repository.

License

This image is licensed under [LICENSE_NAME]. See the LICENSE file for details.

Docker Pull Command

docker pull latchudevops/pcsimage2022-awscli