UVdesk - Dockerize helpdesk project
You can also dockerize your helpdesk project to easily deploy your setup from within a docker container.
To build an image, simply switch to your project's directory and run the following command:
$ docker build -t {IMAGE_NAME} .
Upon successfull execution, this will create a docker image with the specified tag using the -t option. You can use this image to deploy your helpdesk project using either:
docker run or docker-compose.
Deploying Containers
Containers can be launched using one of the two given methods:
Using Docker Run
You can simply launch a standalone container using the following command:
Using Docker Compose
Create a configuration file docker-compose.yaml and set it's configuration details as follows:
Once you've created the configuration file, deploy your containers as services using the following command:
$ docker-compose up -d -f {PATH_TO_DOCKER_FILE}
References: