Official Docker Image

The official docker version of LittleLink Custom. This docker image is a simple to set up solution, containing everything you need to run LittleLink Custom.

Docker Docker



LittleLink Custom Docker Edition

Pull, deploy, enjoy!

The official docker version of LittleLink Custom. This docker image is a simple to set up solution, containing everything you need to run LittleLink Custom.

The docker version of LittleLink Custom retains all the features and customization options of the original version.

This docker is based on Alpine Linux, a Linux distribution designed to be small, simple and secure. The web server is running Apache2, a free and open-source cross-platform web server software. The docker comes with PHP 8.0 for high compatibility and performance.

Using the docker is as simple as pulling and deploying.

Pull:

docker pull julianprieber/littlelink-custom

Deployment:

You may change port 80, 443 to your preferred values.

Both HTTP and HTTPS are supported and exposed by default.

Optional environment variables:

Supported Architectures:

  • linux/amd64
  • linux/arm/v6
  • linux/arm/v7
  • linux/arm64
docker volume create llc

Deploy:

docker run --detach \

    --name littlelink-custom \

    --publish 80:80 \

    --publish 443:443 \

    --restart unless-stopped \

--mount source=llc,target=/htdocs \

    julianprieber/littlelink-custom

Custom deployment:

docker run --detach \

    --name littlelink-custom \

    --hostname littlelink-custom \

    --env HTTP_SERVER_NAME="www.example.xyz" \

    --env HTTPS_SERVER_NAME="www.example.xyz" \

    --env SERVER_ADMIN="[email protected]" \

    --env TZ="Europe/Berlin" \

    --env PHP_MEMORY_LIMIT="512M" \

--env UPLOAD_MAX_FILESIZE="8M" \

    --publish 80:80 \

    --publish 443:443 \

    --restart unless-stopped \

--mount source=llc,target=/htdocs \

    julianprieber/littlelink-custom