Hi All, I've created a docker-compose file to run php-addressbook which might be handy for others as well :-) docker-compose.yml version: '3.3' services: phpaddressbook: container_name: addressbook_www image: php:7.1-apache-stretch restart: always ports: - "8080:80" volumes: - ./data/www:/var/www/html/ command: > sh -c "docker-php-ext-install mysqli && apt-get update && apt-get install -y libfreetype6-dev libjpeg62-turbo-dev libpng-dev && docker-php-ext-configure gd --with-freetype-dir=/usr/include/...