Skip to content

williarin/docker-images

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Docker images

This repository contains various Docker images to be used in web softwares.

Alpine Linux for prod and dev

Starting from 3.20, the production image is almost the same as the official alpine. The timezone is set to UTC.

Versions 3.19 (and below) and 3.20-dev include tools to enhance manual interaction inside the container.

GitHub Logo

Details

Tools included in the dev version (3.19 and below, 3.20-dev and above):

  • zsh with zsh-autosuggestions and zsh-syntax-highlighting plugins
  • Oh My Zsh with a beautiful prompt
  • exa modern replacement for ls

Aliases are already defined to replace ls with exa:

alias ls="exa --icons --group-directories-first"
alias l="exa -aaghl --git --icons --group-directories-first"
alias ll="exa -ghl --git --icons --group-directories-first"
alias lt="exa --tree --level=2 --icons --group-directories-first"

Try it:

# Connect as root
docker run --rm -it williarin/alpine:dev

# Connect as current user
docker run --rm -it -u '1000:1000' williarin/alpine:dev

Available tags

Image Size
williarin/alpine:edge
williarin/alpine:latest
williarin/alpine:dev
williarin/alpine:3.20
williarin/alpine:3.20-dev
williarin/alpine:3.19
williarin/alpine:3.18 [deprecated]
williarin/alpine:3.16 [deprecated]
williarin/alpine:3.15 [deprecated]
williarin/alpine:3.14 [deprecated]
williarin/alpine:3.13 [deprecated]

Note: latest is equivalent to 3.20 and dev is equivalent to 3.20-dev

PHP 7.4, 8.0, 8.1, 8.2, 8.3 images

Images are built once a week at 00:00 on Monday.

Details

All PHP images are based on Alpine Linux 3.20 (williarin/alpine). They come with bash, curl, zip, unzip and widely used PHP extensions.

Installed PHP extensions:

json, ctype, curl, dom, ftp, gd, iconv, intl, mbstring, mysqlnd, openssl, pdo, pdo_sqlite, pdo_mysql, pdo_pgsql, pear, phar, posix, session, sqlite3, xml, xmlreader, zip, zlib, opcache, tokenizer, simplexml, xmlwriter, fileinfo, sodium

Additionally, -dev versions come with Xdebug 3, Git and Make.

Available tags

Image Size
williarin/php:8.3
williarin/php:8.3-dev
williarin/php:8.3-fpm
williarin/php:8.3-fpm-dev
williarin/php:8.2
williarin/php:8.2-dev
williarin/php:8.2-fpm
williarin/php:8.2-fpm-dev
williarin/php:8.1
williarin/php:8.1-dev
williarin/php:8.1-fpm
williarin/php:8.1-fpm-dev
williarin/php:8.0
williarin/php:8.0-dev
williarin/php:8.0-fpm
williarin/php:8.0-fpm-dev
williarin/php:7.4 [deprecated]
williarin/php:7.4-dev [deprecated]
williarin/php:7.4-fpm [deprecated]
williarin/php:7.4-fpm-dev [deprecated]

Docker Security

All the images are pre-built with a user www-data and a group with the same name. Generally there is no need to run containers with root privileges, so we advise the following:

Specify a --user name and set the working directory on docker runs, e.g.:

docker run --user www-data -w /home/www-data --rm williarin/php:8.2-dev bash -c "php -v | grep 'Xdebug'"

Confirm it by running:

docker run --user www-data -w /home/www-data --rm williarin/php:8.2-dev bash -c "id ; env"

Extend the images to your needs

You can easily add PHP extensions using Alpine package manager.

As an example, create a new image with this Dockerfile to add exif extension to PHP:

FROM williarin/php:8.2-fpm

RUN apk add --no-cache \
        php8-exif \
    ;