Running agms Server as Docker container
Prerequisites
Before you begin, please install Docker.
Step 1: Pull argosoft/agms container from the docker hub
Execute the following command:
sudo docker pull argosoft/agms
Step 2: Create volumes
Create volumes for storing server data and logs:
sudo docker volume create msdata
sudo docker volume create mslogs
Step 3: Start the container
Execute the following command: (the command may vary depending on your environment and needs)
sudo docker run -d --rm --name agms --user $(id -u):$(id -g) -v msdata:/app/data/ -v mslogs:/app/logs/ -p 143:143 -p 25:25 -p 110:110 -p 587:587 argosoft/agms