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-06-01 Sun wk22 20:28] – [Installation / Update] baumkpdocker_notes:docker-compose [2026-04-14 Tue wk16 21:03] (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.36.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose+sudo curl -L "https://github.com/docker/compose/releases/download/v5.1.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose 
 +</code> 
 +<code bash>
 sudo chmod +x /usr/local/bin/docker-compose sudo chmod +x /usr/local/bin/docker-compose
 </code> </code>
- 
   *[[https://gdevillele.github.io/compose/install/|Install Docker Compose]]   *[[https://gdevillele.github.io/compose/install/|Install Docker Compose]]
   *Install Docker Engine : [[https://docs.docker.com/engine/install/|Docker Engine]]   *Install Docker Engine : [[https://docs.docker.com/engine/install/|Docker Engine]]