*** This version of Confluence is for testing only and contains a copy of content from June 29th 2026. No changes will be preserved. ***
...
Pull your Docker image and other relevant file from GitHub. Once pulled, navigate to your project folder and run the Docker using docker-compose up with the corresponding yml file:
| Code Block |
|---|
// For productiontest at 353.168232.24882.5782 sudo docker-compose -f docker-compose-prodtest.yml up -d // For testproduction at 335.232168.82248.8257 sudo docker-compose -f docker-compose-testprod.yml up -d // For local development on your laptop // These two commands are equivalents (i.e. default is docker-compose.yml) sudo docker-compose -f docker-compose.yml up -d sudo docker-compose up -d |
...