latchudevops/pcsimage2022-awscli
To deploy a PCS on Windows Server Core
41
A Docker image for running PCS application, a scalable application built to run on Windows containers.
To pull the latest version of the image, run:
docker pull yourdockerhubusername/pcsimage:latest
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.
You can pass additional environment variables, volume mounts, or custom configurations to the container.
docker run -d --name pcscontainer \
-p 1804:1804 \
-e "PCS_ENV=production" \
-v /host/path:/container/path \
yourdockerhubusername/pcsimage:latest
We welcome contributions! Please open an issue or submit a pull request on our GitHub repository.
This image is licensed under [LICENSE_NAME]. See the LICENSE file for details.
docker pull latchudevops/pcsimage2022-awscli