====== Hubs für Container ====== ===== Repositories ===== * [[https://bitnami.com/stacks/infrastructure|bitnami Container]] * [[https://www.docker.com/products/docker-hub|Docker Hub]] * quay.io * ... ===== Docker-Hub ===== https://hub.docker.com/ ==== PHP Images ==== ; Official Image : https://hub.docker.com/_/php ; 8.0.16RC1-fpm-alpine3.15 : [[https://hub.docker.com/layers/php/library/php/8.0.16RC1-fpm-alpine3.15/images/sha256-08d10dcbcb4df59830e00ad880e6e0c36e3dda5c6fbe83629e7abf2a3058dbff?context=explore|PHP 8.0.16RC1-fpm-alpine3.15]] : **Docker Pull** docker.io/library/php:8.1.3RC1-fpm-alpine3.15 ==== Apache httpd Images ==== ; Official Image : https://hub.docker.com/_/httpd ; httpd:alpine3.15 : [[https://hub.docker.com/layers/httpd/library/httpd/alpine3.15/images/sha256-1befd21fdaeec7696d41b3c14bf50dbbe88df750759ea022666ecab121633462?context=explore|Apache httpd Alpine 3.15]] : **Docker Pull** docker.io/library/httpd:alpine3.15 ==== Alpine Linux ==== Alpine Linux ist ein nur ca. 35 MB großes OS-Image. Installation von Software mit ''apk add ''. In ''/etc/apk/world'' werden installierte Packages erfasst. Füttert man diese Datei mit den Namen der Pakete, die man installiert haben möchte und ruft ''apk add'' auf, werden diese automatisch installiert. * https://hub.docker.com/_/alpine/ ----