lab

shlink (latest)

Published 2025-11-27 10:07:24 +00:00 by myve

Installation

docker pull hub.myvelabs.com/lab/shlink:latest
sha256:8e40b605cc2c162b37bbb2cb1a488f72fa5a7815b0412237c500a63e6394f29b

About this package

The definitive self-hosted URL shortener

Image layers

ADD alpine-minirootfs-3.21.5-x86_64.tar.gz / # buildkit
CMD ["/bin/sh"]
ENV PHPIZE_DEPS=autoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c
RUN /bin/sh -c apk add --no-cache ca-certificates curl openssl tar xz # buildkit
RUN /bin/sh -c set -eux; adduser -u 82 -D -S -G www-data www-data # buildkit
ENV PHP_INI_DIR=/usr/local/etc/php
RUN /bin/sh -c set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html # buildkit
ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
ENV PHP_LDFLAGS=-Wl,-O1 -pie
ENV GPG_KEYS=AFD8691FDAEDF03BDF6E460563F15A9B715376CA 9D7F99A0CB8F05C8A6958D6256A97AF7600A39A6 0616E93D95AF471243E26761770426E17EBBB3DD
ENV PHP_VERSION=8.4.14
ENV PHP_URL=https://www.php.net/distributions/php-8.4.14.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.4.14.tar.xz.asc
ENV PHP_SHA256=bac90ee7cf738e814c89b6b27d4d2c4b70e50942a420837e1a22f5fd5f9867a3
RUN /bin/sh -c set -eux; apk add --no-cache --virtual .fetch-deps gnupg; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; apk del --no-network .fetch-deps # buildkit
COPY docker-php-source /usr/local/bin/ # buildkit
RUN /bin/sh -c set -eux; apk add --no-cache --virtual .build-deps $PHPIZE_DEPS argon2-dev coreutils curl-dev gnu-libiconv-dev libsodium-dev libxml2-dev linux-headers oniguruma-dev openssl-dev readline-dev sqlite-dev ; rm -vf /usr/include/iconv.h; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" PHP_BUILD_PROVIDER='https://github.com/docker-library/php' PHP_UNAME='Linux - Docker' ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv=/usr --with-openssl --with-readline --with-zlib --enable-phpdbg --enable-phpdbg-readline --with-pear ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; apk add --no-cache $runDeps; apk del --no-network .build-deps; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version # buildkit
COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ # buildkit
RUN /bin/sh -c docker-php-ext-enable opcache # buildkit
RUN /bin/sh -c docker-php-ext-enable sodium # buildkit
ENTRYPOINT ["docker-php-entrypoint"]
CMD ["php" "-a"]
ARG SHLINK_VERSION=4.6.0
ENV SHLINK_VERSION=4.6.0
ARG SHLINK_RUNTIME=rr
ENV SHLINK_RUNTIME=rr
ENV USER_ID=1001
ENV PDO_SQLSRV_VERSION=5.12.0
ENV MS_ODBC_DOWNLOAD=7/6/d/76de322a-d860-4894-9945-f0cc5d6a45f8
ENV MS_ODBC_SQL_VERSION=18_18.4.1.1
ENV LC_ALL=C
WORKDIR /etc/shlink
RUN |2 SHLINK_VERSION=4.6.0 SHLINK_RUNTIME=rr /bin/sh -c apk add --no-cache --virtual .dev-deps sqlite-dev postgresql-dev icu-dev libzip-dev zlib-dev libpng-dev linux-headers && docker-php-ext-install -j"$(nproc)" pdo_mysql pdo_pgsql intl calendar sockets bcmath zip gd && apk add --no-cache sqlite-libs && docker-php-ext-install -j"$(nproc)" pdo_sqlite && apk del .dev-deps && apk add --no-cache postgresql icu libzip libpng # buildkit
RUN |2 SHLINK_VERSION=4.6.0 SHLINK_RUNTIME=rr /bin/sh -c apk add --no-cache --virtual .phpize-deps ${PHPIZE_DEPS} unixodbc-dev && if [ $(uname -m) == "x86_64" ]; then wget https://download.microsoft.com/download/${MS_ODBC_DOWNLOAD}/msodbcsql${MS_ODBC_SQL_VERSION}-1_amd64.apk && apk add --allow-untrusted msodbcsql${MS_ODBC_SQL_VERSION}-1_amd64.apk && pecl install pdo_sqlsrv-${PDO_SQLSRV_VERSION} && docker-php-ext-enable pdo_sqlsrv && rm msodbcsql${MS_ODBC_SQL_VERSION}-1_amd64.apk ; fi; apk del .phpize-deps # buildkit
LABEL maintainer=Alejandro Celaya <alejandro@alejandrocelaya.com>
COPY --chown=1001 /etc/shlink . # buildkit
RUN |2 SHLINK_VERSION=4.6.0 SHLINK_RUNTIME=rr /bin/sh -c ln -s /etc/shlink/bin/cli /usr/local/bin/shlink && if [ "$SHLINK_RUNTIME" == 'rr' ]; then php ./vendor/bin/rr get --no-interaction --no-config --location bin/ && chmod +x bin/rr ; fi; # buildkit
EXPOSE [8080/tcp]
COPY docker/docker-entrypoint.sh docker-entrypoint.sh # buildkit
COPY docker/config/php.ini /usr/local/etc/php/conf.d/ # buildkit
USER 1001
ENTRYPOINT ["/bin/sh" "./docker-entrypoint.sh"]

Labels

Key Value
maintainer Alejandro Celaya <alejandro@alejandrocelaya.com>
org.opencontainers.image.created 2025-11-01T11:49:32.046Z
org.opencontainers.image.description The definitive self-hosted URL shortener
org.opencontainers.image.licenses MIT
org.opencontainers.image.revision 0d833904e88425e220fdf70d4387b84e4ce21c0b
org.opencontainers.image.source https://github.com/shlinkio/shlink
org.opencontainers.image.title shlink
org.opencontainers.image.url https://github.com/shlinkio/shlink
org.opencontainers.image.version 4.6.0
Details
Container
2025-11-27 10:07:24 +00:00
1
OCI / Docker
linux/amd64
MIT
97 MiB
Versions (1) View all
latest 2025-11-27