Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
docker_notes:docker-compose [2025-01-17 Fri wk03 16:14] – [Installation / Update] baumkpdocker_notes:docker-compose [2025-12-08 Mon wk50 15:38] (current) – [Installation / Update] baumkp
Line 6: Line 6:
   ***''docker-compose pull'', it would seem this is required to ensure the latest image(s) is downloaded**   ***''docker-compose pull'', it would seem this is required to ensure the latest image(s) is downloaded**
   *''%%docker-compose up -d --build --force-recreate%%''   *''%%docker-compose up -d --build --force-recreate%%''
-    * ''-d''+    * ''-d'' run as deamon (in background)
     * ''%%--build%%'' on required if the compose includes building an image     * ''%%--build%%'' on required if the compose includes building an image
     * ''%%--force-recreate%%''     * ''%%--force-recreate%%''
Line 20: Line 20:
 The latest version of docker-compose can be check here: [[https://github.com/docker/compose/releases | git hub docker compose releases]] change the version sub-directory as required. The latest version of docker-compose can be check here: [[https://github.com/docker/compose/releases | git hub docker compose releases]] change the version sub-directory as required.
 <code bash> <code bash>
-sudo curl -L "https://github.com/docker/compose/releases/download/v2.32.4/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose+sudo curl -L "https://github.com/docker/compose/releases/download/v5.0.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
 sudo chmod +x /usr/local/bin/docker-compose sudo chmod +x /usr/local/bin/docker-compose
 </code> </code>