Update Docker Commands Cheat Sheet authored by Simon's avatar Simon
...@@ -28,7 +28,16 @@ You can replace "freedmr" with the container you wish to restart ...@@ -28,7 +28,16 @@ You can replace "freedmr" with the container you wish to restart
docker-compose pull docker-compose pull
This should be followed by a down / up sequence This should be followed by a down / up sequence
## Show logs
docker-compose logs [-f] [--tail 300] freedmr
the -f and --tail are optional.
-f is follow - like tail -f
--tail N shows the last N lines
## Connect to a shell inside a running container ## Connect to a shell inside a running container
... ...
......