kiklop74 / alpine-apache-php

Alpine based docker image with apache2 and php8

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

alpine-apache-php

Alpine based image with apache2 and php8

You can find a built image at Docker Hub or use the image: eriksoderblom/alpine-apache-php:latest

Define environnement variables (optional)

  • SERVER_ADMIN (an email, defaults to you@example.com)
  • HTTP_SERVER_NAME (a server name, defaults to www.example.com)
  • HTTPS_SERVER_NAME (a server name, defaults to www.example.com)
  • LOG_LEVEL (a log level, defaults to info)
  • TZ (a timezone, defaults to UTC)
  • PHP_MEMORY_LIMIT (a memory-limit, defaults to 256M)

Build

Replace alpine-apache-php and tags with whatever you want when building your own image.

docker build -t alpine-apache-php:latest .

Run

Change the left side port 80, 443 and /docker/data/www to your preferred values.
You can use the image name from the previous step if you built your own image.

docker run --detach \
    --name alpine-apache-php \
    --publish 80:80 \
    --publish 443:443 \
    --restart unless-stopped \
    --volume /docker/data/www:/htdocs \
    eriksoderblom/alpine-apache-php:latest

Customized run

docker run --detach \
    --name alpine-apache-php-custom \
    --hostname alpine-apache-php.local \
    --env HTTP_SERVER_NAME="www.example.xyz" \
    --env HTTPS_SERVER_NAME="www.example.xyz" \
    --env SERVER_ADMIN="admin@example.xyz" \
    --env TZ="Europe/Paris" \
    --env PHP_MEMORY_LIMIT="512M" \
    --publish 80:80 \
    --publish 443:443 \
    --restart unless-stopped \
    --volume /docker/data/www:/htdocs \
    eriksoderblom/alpine-apache-php:latest

About

Alpine based docker image with apache2 and php8


Languages

Language:Shell 86.6%Language:Dockerfile 13.4%