Docker and Docker-compose
Docker
Docker can be used along Partek Flow to deploy an easy to maintain environment which will not have dependency issues and will be easy to relocate among different servers if needed.
One can follow the Docker documentation to install Docker.
Useful commands
This command will output the details of the currently running containers including port forwarding, container name/id, and uptime.
This command will allow us to enter the running container’s environment to troubleshoot any issues we might have with the container.
Docker-compose
“Compose is a tool for defining and running multi-container Docker applications. With Compose, you use a YAML file to configure your application’s services. Then, with a single command, you create and start all the services from your configuration.“
Partek support will work with the customer to customize a docker-compose file that will have all the configuration necessary to run Partek Flow on any machine that meets our Minimum system requirements.
Below it is an example docker-compose.yml file which can be used to deploy Partek Flow.
These are some of the important tags shown above:
restart: whether you want the container to be restarted automatically upon failure or system restart.
image: the container image tag. It is recommended to run the latest version of Partek Flow. If you need any specific versions of Partek Flow please visit here.
environment: here we set up any environment variables to be run along the container.
port: the exposed port used to access Partek Flow via a web browser.
mac_address: this needs to match your license file.
volumes: in this section we specify the folder on the server to be shared with the container, this way we can better persist and access the files we create and use in the container.
Additional Assistance
If you need additional assistance, please visit our support page to submit a help ticket or find phone numbers for regional support.
Last updated