docker

Differences

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

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
docker [2022/12/07 10:13] – [Docker.commands] admindocker [2024/11/09 16:11] (current) – [Docker] admin
Line 1: Line 1:
 ===== Docker ===== ===== Docker =====
 +https://github.com/docker/labs/tree/master/networking/concepts https://sysdig.com/blog/dockerfile-best-practices/ \\
 +dns https://kerneltalks.com/networking/how-docker-container-dns-works/ \\
 +https://labs.play-with-docker.com/ \\
 <code BASH> <code BASH>
 docker -D info docker -D info
 +docker compose --ansi=never up --quiet-pull
 </code> </code>
  
 +===== Docker.goodPackages =====
 +  * [[https://github.com/linuxserver|linuxserver]], [[https://github.com/hotio|hotio]], and [[https://github.com/binhex?tab=repositories|binhex]]    - packages [[https://www.reddit.com/r/unRAID/comments/18fcq05/binhex_who/|reddit]]
 +  * updates and good packages https://blog.bozdaganian.com/2020/12/12/watchtower-to-monitor-docker-image-updates/#2
 +  * unusual way https://www.youtube.com/watch?v=zfNqp85g5JM
 +  * https://github.com/docker/awesome-compose
 +
 +
 +
 +===== Docker.scout  =====
 +  * scout - security scan
 +
 +===== Docker.dedockify  =====
 +
 +  * dedockify https://github.com/mrhavens/Dedockify
 ==== Docker.Learning ==== ==== Docker.Learning ====
   * https://dockerlabs.collabnix.com/ - learning   * https://dockerlabs.collabnix.com/ - learning
Line 27: Line 45:
 # docker find by name # docker find by name
 docker ps -a --format "{{.ID}} {{.Names}}" --filter name=UismvProd_Db docker ps -a --format "{{.ID}} {{.Names}}" --filter name=UismvProd_Db
 +
 +# docker find thin r/w layer aufs by container id - ``docker ps`` 
 +cat /var/lib/docker/image/aufs/layerdb/mounts/<CONTAINERID>*/mount-id
 +<ID>
 +# real files in -> /var/lib/docker/aufs/diff/<ID>    <ID>-init - entry point  of container aufs start
 +
 +# find container by name of catalog AUFS DIFF
 +grep 09c1f3c8c5adfb9241d477a61b5b04fd4cde07959dbee5ad385c4ef9c5e9d71d /var/lib/docker/image/aufs/layerdb/mounts/*/mount-id
 +<RESULT>
 +# this give id in path -> /var/lib/docker/aufs/diff/<RESULT>/etc/freeradius/
 +
  
 # inspecting docker with jq - mounts # inspecting docker with jq - mounts
Line 83: Line 112:
 <code BASH> <code BASH>
 # huge containers overlay container size # huge containers overlay container size
-# as root # make sure json parser is installed  $ apt-get install jq -y +# as root $ sudo su     # make sure json parser is installed  $ apt-get install jq -y 
  
 # grab the size and path to the largest overlay dir # grab the size and path to the largest overlay dir
Line 245: Line 274:
  
  
 +===== Docker baseimage to ease creation of X graphical application containers GUI=====
 +  * https://github.com/jlesage/docker-baseimage-gui
 ===== Docker Network ===== ===== Docker Network =====
   * https://www.youtube.com/watch?v=bKFMS5C4CG0   * https://www.youtube.com/watch?v=bKFMS5C4CG0
  • docker.1670407982.txt.gz
  • Last modified: 2022/12/07 10:13
  • by admin