*** 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 test at 3.232.82.82environments. sudo docker-compose -f docker-compose-test.yml up -d --force-recreate // For production at 35.168.248.57environments. sudo docker-compose -f docker-compose-prod.yml up -d --force-recreate // 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 --force-recreate sudo docker-compose up -d --force-recreate |
...